Skip to content

Commit

Permalink
Add snapshot release workflow (#587)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmatown committed Jan 14, 2024
1 parent 31539f7 commit 4213d9b
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/publish_snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Publish (Snapshot)

on:
workflow_dispatch:
inputs:
tag:
description: "The npm tag to publish to"
required: true

jobs:
publish_snapshot:
name: Publish (Snapshot)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
with:
persist-credentials: true # needed for git push

- uses: ./.github/actions/setup-deps

- name: version packages
run: pnpm changeset version --snapshot ${{ inputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: git commit
run: |
git config --global user.name 'Thinkmill Release Bot'
git config --global user.email 'automation+github@thinkmill.com.au'
git commit -a -m 'rc'
- run: pnpm build:packages

- name: npm publish, git tag
run: pnpm changeset publish --tag ${{ inputs.tag }}
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# reset, then push the dangling commit
- name: git push
run: |
git reset HEAD~1 --hard
git push origin --tags

0 comments on commit 4213d9b

Please sign in to comment.