Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/entrylabs/entry-modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Tnks2U committed Aug 27, 2024
2 parents cea8e7f + 30f6aa5 commit 8c988ce
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'release'
on:
release:
types: [created]

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- run: pnpm install
- run: pnpm build
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}

0 comments on commit 8c988ce

Please sign in to comment.