summaryrefslogtreecommitdiff
path: root/.github/workflows/tag-release.yaml
diff options
context:
space:
mode:
authorBrad Linden <brad@lindenlab.com>2024-06-17 18:54:45 -0700
committerBrad Linden <brad@lindenlab.com>2024-06-17 18:54:45 -0700
commitf5659945b5a177b325f98b6d598af47a214e7abc (patch)
treec95e1af590f3d3c99ac266df2a814a3e78c64f61 /.github/workflows/tag-release.yaml
parent3da16d1899324b358ac0d27ddd99bf8214f6fb54 (diff)
Fix secret name since GITHUB_ prefix is reserved
Diffstat (limited to '.github/workflows/tag-release.yaml')
-rw-r--r--.github/workflows/tag-release.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/tag-release.yaml b/.github/workflows/tag-release.yaml
index b73ec502f1..2083b414f5 100644
--- a/.github/workflows/tag-release.yaml
+++ b/.github/workflows/tag-release.yaml
@@ -27,7 +27,7 @@ jobs:
tag-release:
runs-on: ubuntu-latest
env:
- GITHUB_TAG_TOKEN: ${{ secrets.GITHUB_TAG_TOKEN }}
+ LL_TAG_RELEASE_TOKEN: ${{ secrets.LL_TAG_RELEASE_TOKEN }}
steps:
- name: Setup Env Vars
run: |
@@ -36,9 +36,9 @@ jobs:
echo NIGHTLY_DATE=$(date --rfc-3339=date) >> ${GITHUB_ENV}
- name: Update Tag
uses: actions/github-script@v7.0.1
- if: env.GITHUB_TAG_TOKEN
+ if: env.LL_TAG_RELEASE_TOKEN
with:
- github-token: ${{ env.GITHUB_TAG_TOKEN }}
+ github-token: ${{ env.LL_TAG_RELEASE_TOKEN }}
script: |
github.rest.git.createRef(
owner: context.repo.owner,