Skip to content

Commit

Permalink
Fixup token
Browse files Browse the repository at this point in the history
  • Loading branch information
pmconrad committed Nov 30, 2019
1 parent 8f2947c commit cbd102e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-sign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
git checkout -b "$BRANCH"
git add signatures
git commit -m "Add Linux autobuild signature for ${{ github.event.deployment.payload.coreversion }}"
git push "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" "$BRANCH"
git push "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" "$BRANCH"
- name: Upload build artifacts
uses: actions/upload-artifact@master
with:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
git checkout -b "$BRANCH"
git add signatures
git commit -m "Add OSX autobuild signature for ${{ github.event.deployment.payload.coreversion }}"
git push "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" "$BRANCH"
git push "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" "$BRANCH"
- name: Upload build artifacts
uses: actions/upload-artifact@master
with:
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
git checkout -b "$BRANCH"
git add signatures
git commit -m "Add win autobuild signature for ${{ github.event.deployment.payload.coreversion }}"
git push "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" "$BRANCH"
git push "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" "$BRANCH"
- name: Upload build artifacts
uses: actions/upload-artifact@master
with:
Expand Down

0 comments on commit cbd102e

Please sign in to comment.