Skip to content

Commit

Permalink
feat(ci): add manual release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vscav committed Jan 5, 2024
1 parent 43ebc9f commit 52c257e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: release
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Verify branch name
if: github.ref != 'refs/heads/main'
run: |
echo "🚨 The release must start from the main branch!"
exit 1
- name: Configure releaser details
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Install pnpm
uses: wyvox/action-setup-pnpm@v3
with:
pnpm-version: 8.6.0
node-version: 18.x
node-registry-url: "https://registry.npmjs.org"

- name: Trigger release script
run: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 52c257e

Please sign in to comment.