Skip to content

Commit

Permalink
Merge pull request #50 from gerlero/release
Browse files Browse the repository at this point in the history
Fix Release workflow
  • Loading branch information
gerlero authored Jun 30, 2022
2 parents 5eb5150 + d7bbbf3 commit 26a56c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
make test OPENFOAM_VERSION=${{ inputs.openfoam-version }}
release:
if: inputs.release == 'true'
if: ${{ inputs.release }}
needs: test
runs-on: ubuntu-latest
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: ./.github/workflows/build-test.yml
with:
openfoam-version: 2206
app-version: needs.get-version.outputs.version
app-version: ${{ needs.get-version.outputs.version }}
release: true

openfoam2112:
Expand All @@ -30,5 +30,5 @@ jobs:
uses: ./.github/workflows/build-test.yml
with:
openfoam-version: 2112
app-version: needs.get-version.outputs.version
app-version: ${{ needs.get-version.outputs.version }}
release: true

0 comments on commit 26a56c9

Please sign in to comment.