Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
Don't rely on env vars in env step for docker release
Browse files Browse the repository at this point in the history
  • Loading branch information
jacque006 committed Aug 5, 2021
1 parent df8c8c3 commit cf24a09
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ on:

env:
DOCKER_IMAGE: thehubbleproject/node
DOCKER_IMAGE_SHA: ${{ env.DOCKER_IMAGE }}:${{ github.sha }}
DOCKER_IMAGE_TAG: ${{ env.DOCKER_IMAGE }}:${{ github.event.release.tag_name }}
DOCKER_IMAGE_LATEST: ${{ env.DOCKER_IMAGE }}:latest
DOCKER_IMAGE_SHA: thehubbleproject/node:${{ github.sha }}
DOCKER_IMAGE_TAG: thehubbleproject/node:${{ github.event.release.tag_name }}
DOCKER_IMAGE_LATEST: thehubbleproject/node:latest

jobs:
pull-tag-push:
runs-on: ubuntu-latest
needs: images

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit cf24a09

Please sign in to comment.