Async import sort-package-json
#629
Workflow file for this run
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: Snapshot | |
on: | |
push: | |
branches-ignore: | |
- changeset-release/master | |
- master | |
tags-ignore: | |
- '**' | |
# we don't want the pending indicator, but we might want to trigger it manually before a release | |
workflow_dispatch: | |
env: | |
CI: true | |
jobs: | |
release: | |
name: Publish | |
runs-on: ubuntu-latest | |
environment: snapshot | |
steps: | |
- name: Checkout & Install | |
uses: seek-oss/crackle/.github/actions/init@master | |
- name: Publish | |
uses: seek-oss/changesets-snapshot@v0 | |
with: | |
pre-publish: pnpm prepare-publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.SEEK_OSS_CI_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |