File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed
Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 1- # This file is a generic workflow used across multiple Intercom repos.
2- # The source of truth lives at:
3- # https://github.com/intercom/github-action-workflows
4- # If you feel you need to make a change to this workflow, please reach out
5- # to team-builder-tools on Slack.
6-
71name : Publish to GitHub Package Registry
82
93on :
4337 fi
4438
4539 - name : Publish to GPR
46- # We need to remove the .npmrc here because it contains a read-only
47- # GPR token which takes precendence over the read-write token
48- # provided by GitHub via action secrets below
4940 run : rm .npmrc || true; npm publish || true
5041 env :
5142 NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1- # This file is a generic workflow used across multiple Intercom repos.
2- # The source of truth lives at:
3- # https://github.com/intercom/github-action-workflows
4- # If you feel you need to make a change to this workflow, please reach out
5- # to team-builder-tools on Slack.
6-
71name : Publish pre-release version to GitHub Package Registry
82
93on :
5347
5448 - name : Publish to GPR
5549 if : steps.package-version-check.outputs.is-pre-release == 'true'
56- # We need to remove the .npmrc here because it contains a read-only
57- # GPR token which takes precendence over the read-write token
58- # provided by GitHub via action secrets below
5950 run : rm .npmrc || true; npm publish || true
6051 env :
6152 NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments