fixup dev uris and add origin override in CLI #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
branches: | |
- 'main' | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
cache: 'yarn' | |
- name: Setup .yarnrc.yml | |
run: | | |
yarn config set npmAuthToken $NPM_TOKEN | |
yarn config set npmAlwaysAuth true | |
env: | |
NPM_TOKEN: ${{ secrets.CI_NPM_TOKEN }} | |
- name: Install | |
run: yarn install --immutable | |
- name: Create Release Pull Request or Publish | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
version: yarn run version | |
publish: yarn run release:packages | |
env: | |
NPM_TOKEN: ${{ secrets.CI_NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.CI_ACCESS_TOKEN }} |