Skip to content

Commit

Permalink
test release (after obtaining bumped version)
Browse files Browse the repository at this point in the history
  • Loading branch information
jblom committed Apr 5, 2024
1 parent 85343d5 commit 396fe8a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/nighly-build-release-with-artefact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

jobs:
bump-version: # only calculate next version if something has changed in this repo
bump-version: # TODO only calculate next version if something has changed in this repo
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.bumped-tag.outputs.tag }}
Expand All @@ -20,8 +20,10 @@ jobs:
echo "tag=${VERSION}" >> $GITHUB_OUTPUT
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# release: # only create release if something has changed in this repo
# uses: ./.github/workflows/_release-with-built-site-as-artifact.yml
# needs: [bump-version]
# with:
# tag: ${{needs.bump-version.outputs.tag}}

release: # TODO only create release if something has changed in this repo
if: ${{needs.bump-version.outputs.tag != ''}}
uses: ./.github/workflows/_release-with-built-site-as-artifact.yml
needs: [bump-version]
with:
tag: ${{needs.bump-version.outputs.tag}}

0 comments on commit 396fe8a

Please sign in to comment.