Skip to content

Commit

Permalink
ci: use beequeueci token to trigger publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Eli Skeggs committed Aug 5, 2020
1 parent 7184134 commit b7aa4d3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
# Necessary to avoid the GitHub action credentials being used by semantic-release. When
# semantic-release pushes to the tag, we want that push to trigger the docker build, but
# the action credentials aren't allowed to trigger downstream workflows. Instead, we
# explicitly use a personal access token.
persist-credentials: false
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
Expand All @@ -46,4 +52,4 @@ jobs:
- name: Release
run: npx semantic-release -b default
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

0 comments on commit b7aa4d3

Please sign in to comment.