From a1c5950d9a955c97b9b0df6464b1542ac4bf473d Mon Sep 17 00:00:00 2001 From: Jacob Oursland Date: Mon, 5 May 2025 12:40:21 -0700 Subject: [PATCH] CI: add missing token to fix weekly build. --- .github/workflows/sub_weeklyBuild.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sub_weeklyBuild.yml b/.github/workflows/sub_weeklyBuild.yml index eed068c6d8..ff6bd3bae5 100644 --- a/.github/workflows/sub_weeklyBuild.yml +++ b/.github/workflows/sub_weeklyBuild.yml @@ -2,6 +2,7 @@ name: Weekly Build on: schedule: - cron: "42 18 * * 1" + workflow_dispatch: permissions: contents: write @@ -25,6 +26,8 @@ jobs: - name: Tag Build id: tag_build shell: bash -l {0} + env: + GH_TOKEN: ${{ github.token }} run: | export BUILD_TAG=weekly-$(date "+%Y.%m.%d") echo "BUILD_TAG=${BUILD_TAG}" >> "$GITHUB_ENV" @@ -32,6 +35,7 @@ jobs: gh release create ${BUILD_TAG} --title "Development Build ${BUILD_TAG}" -F .github/workflows/weekly-build-notes.md --prerelease || true - name: Upload Source + shell: bash -l {0} env: GH_TOKEN: ${{ github.token }} run: |