-
Notifications
You must be signed in to change notification settings - Fork 349
Open
Description
I've correctly setup the Changesets Release Action to publish to GPR:
name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@master
with:
node-version: 14
registry-url: https://npm.pkg.github.com
- name: Install dependencies
run: npm i
- name: Build packages
run: npm run build
- name: Create Release Pull Request or Publish to GPR/NPM
uses: changesets/action@master
with:
publish: npx changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}But I can't setup the Changesets Release Action to publish the packages both to GPR and to NPM. Is it possible in the latest version?
p-j, amowu and o-az
Metadata
Metadata
Assignees
Labels
No labels