diff --git a/.github/workflows/nighly-build-release-with-artefact.yml b/.github/workflows/nighly-build-release-with-artefact.yml index dfee799..186f6a9 100644 --- a/.github/workflows/nighly-build-release-with-artefact.yml +++ b/.github/workflows/nighly-build-release-with-artefact.yml @@ -5,10 +5,9 @@ name: Nighly release of main branch with bumped tag # # - cron: "0 1 * * *" on: - workflow_dispatch: + workflow_dispatch: jobs: - bump-version: # only calculate next version if something has changed in this repo runs-on: ubuntu-latest outputs: @@ -19,7 +18,8 @@ jobs: run: | VERSION=`gh release view --json tagName --jq '.tagName'`; \ 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]