Skip to content

Commit

Permalink
Merge pull request #4 from reedsy/fix-cicd
Browse files Browse the repository at this point in the history
👷 Fix CiCd
  • Loading branch information
dawidreedsy authored Dec 4, 2023
2 parents 733eb9a + 09747e2 commit c429c86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
# Use PAT instead of default Github token, because the default
# token deliberately will not trigger another workflow run
token: ${{ secrets.REEDSY_BOT_PERSONAL_ACCESS_TOKEN }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
# Separate checkout action for pull_request_target, which needs to
# explicitly checkout the SHA
- name: Checkout (pull request)
Expand All @@ -41,7 +41,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
# Use PAT instead of default Github token, because the default
# token deliberately will not trigger another workflow run
token: ${{ secrets.REEDSY_BOT_PERSONAL_ACCESS_TOKEN }}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
# GITHUB_TOKEN can't access packages hosted in private repos,
# even within the same organisation
NODE_AUTH_TOKEN: ${{ secrets.REEDSY_BOT_PERSONAL_ACCESS_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Post-install
run: npm rebuild && npm run prepare --if-present
- name: Publish
Expand Down

0 comments on commit c429c86

Please sign in to comment.