Skip to content

Commit

Permalink
package publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
deepak-shah-np committed Nov 27, 2024
1 parent 40a85eb commit 19fbb79
Show file tree
Hide file tree
Showing 3 changed files with 10,811 additions and 4,935 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/ci.yml

This file was deleted.

38 changes: 38 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Release
on:
push:
branches:
- main # Specify your default branch

permissions:
contents: write # Allow writing to the repository for tags and releases
statuses: write
issues: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 22.5.1

- name: Install dependencies
run: npm ci

- name: Prepare for development
run: npm run dev:prepare

- name: Prepack the project
run: npm run prepack

- name: Run audit
run: npm audit signatures

- name: Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
Loading

0 comments on commit 19fbb79

Please sign in to comment.