Skip to content

Commit

Permalink
fix: reusable workflow referencing input as vars
Browse files Browse the repository at this point in the history
  • Loading branch information
joshiste committed Dec 6, 2024
1 parent c66ddcb commit 4ec5cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-extension-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
outputs:
version: ${{ steps.meta.outputs.version }}
deployer_available: ${{ secrets.PAT_TOKEN_EXTENSION_DEPLOYER != '' }}
version_bump_available: ${{ vars.VERSION_BUMPER_APPID != '' && secrets.VERSION_BUMPER_SECRET != '' }}
version_bump_available: ${{ inputs.VERSION_BUMPER_APPID != '' && secrets.VERSION_BUMPER_SECRET != '' }}
env:
snyk_available: ${{ secrets.SNYK_TOKEN != '' && 'true' || 'false' }}
steps:
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
# args: --file=Dockerfile --severity-threshold=high --project-name=${{ github.repository }} --target-reference=release-candidate
# command: test
# env:
# SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
# SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v6
Expand Down

0 comments on commit 4ec5cf6

Please sign in to comment.