Skip to content

Commit

Permalink
fix: fixed CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
s0ders committed Apr 24, 2024
1 parent 4effabb commit a767ae1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,16 @@ jobs:
with:
repository-path: .
tag-prefix: 'v'
branch: 'main'
dry-run: 'true'
verbose: 'true'

docker-build-and-scan:
runs-on: ubuntu-latest
needs: pre-release-detection
if: ${{needs.pre-release-detection.outputs.release == 'true'}}
env:
PRERELEASE_TAG: ${{needs.pre-release-detection.outputs.semver}}-${{ github.sha }}
PRERELEASE_TAG: "${{needs.pre-release-detection.outputs.semver}}-${{ github.sha }}"
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -89,7 +91,7 @@ jobs:
- pre-release-detection
if: ${{needs.pre-release-detection.outputs.release == 'true'}}
env:
PRERELEASE_TAG: ${{needs.pre-release-detection.outputs.semver}}-${{ github.sha }}
PRERELEASE_TAG: "${{needs.pre-release-detection.outputs.semver}}-${{ github.sha }}"
RELEASE_TAG: ${{needs.pre-release-detection.outputs.semver}}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit a767ae1

Please sign in to comment.