Skip to content

Commit

Permalink
Fixup secret check
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Sep 16, 2024
1 parent 157fd81 commit 51bf409
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deploy_dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ jobs:
build:
name: Deploy to dockerhub
runs-on: ubuntu-latest
needs: [check-secret]
if: needs.check-secret.outputs.secrets-defined == 'true'
steps:
- uses: actions/checkout@master
- run: git archive -v -o container/charliecloud/parpe_base/parpe.tar.gz --format=tar.gz HEAD
- name: Publish to Registry
if: needs.check-secret.outputs.secrets-defined == 'true'
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: dweindl/parpe
Expand Down

0 comments on commit 51bf409

Please sign in to comment.