Skip to content

Commit

Permalink
Merge pull request #6 from i4Trust/ci
Browse files Browse the repository at this point in the history
Fix release number
  • Loading branch information
dwendland authored Jun 21, 2022
2 parents af1e642 + fb2bb20 commit 16106e3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,20 @@ jobs:
steps:
- uses: actions/checkout@v2

- id: pr
uses: actions-ecosystem/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- uses: zwaldowski/semver-release-action@v2
with:
dry_run: true
bump: ${{ steps.pr.outputs.labels }}
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Set version output
id: out
run: echo "::set-output name=version::$(echo 0.18.0)"
run: echo "::set-output name=version::$(echo ${VERSION})"

- name: generate temporary tag
run: echo IMAGE_TAG=${{ steps.out.outputs.version }} >> $GITHUB_ENV
Expand Down

0 comments on commit 16106e3

Please sign in to comment.