Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
suecharo committed May 15, 2023
1 parent 4aa6470 commit 992156c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
needs: [load_release_version, generate_and_push_context]
env:
VERSION: ${{ steps.load_release_version.outputs.version }}
VERSION: ${{ needs.load_release_version.outputs.version }}
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
runs-on: ubuntu-latest
needs: [load_release_version, generate_and_push_context]
env:
VERSION: ${{ steps.load_release_version.outputs.version }}
VERSION: ${{ needs.load_release_version.outputs.version }}
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-latest
needs: [load_release_version, generate_and_push_context]
env:
VERSION: ${{ steps.load_release_version.outputs.version }}
VERSION: ${{ needs.load_release_version.outputs.version }}
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 992156c

Please sign in to comment.