From d914a1bf42461deacf2d86f77f0a647876386ceb Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Thu, 7 Apr 2022 18:25:05 -0500 Subject: [PATCH] Add new access keys for auto tag to trigger build Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- .github/workflows/update.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 63d9e35..7dac364 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -10,6 +10,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + ssh-key: ${{ secrets.TAGKEY }} - uses: julia-actions/setup-julia@v1 with: version: "1.6" @@ -27,7 +29,7 @@ jobs: format: "YYYY-MM-DD" - uses: devops-infra/action-commit-push@v0.9.0 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GH_PAK }} commit_message: "[⚡ AUTOMATED]: Pkg upgrade for ${{ steps.time.outputs.time }}" - id: hash run: | @@ -35,7 +37,7 @@ jobs: echo "::set-output name=long_hash::$(git rev-parse HEAD)" - uses: mathieudutour/github-tag-action@v6.0 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GH_PAK }} commit_sha: ${{ steps.hash.outputs.long_hash }} tag_prefix: "" custom_tag: ${{ steps.julia_ver.outputs.version }}-${{ steps.hash.outputs.short_hash }}