mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 11:33:09 +00:00
Publishing to npm (#1232)
* WIP publishing to NPM * next tag if on dev branch * Update publish.yml * Update publish.yml * Update publish.yml * reverting test.yml, updating action
This commit is contained in:
parent
a1d02a3f97
commit
0437bdc049
1 changed files with 27 additions and 0 deletions
27
.github/workflows/publish.yml
vendored
Normal file
27
.github/workflows/publish.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
name: Publish to NPM
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
jobs:
|
||||
publish:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
GITHUB_CI: true
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
# Setup .npmrc file to publish to npm
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18.12.0
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
- name: Install dependencies
|
||||
run: npm install
|
||||
- name: Build
|
||||
run: npm run build
|
||||
- name: Increment version
|
||||
run: npm run increment
|
||||
- name: Publish Dev
|
||||
run: npm publish --tag next --dry-run
|
||||
if: ${{ github.ref == 'refs/heads/dev' }}
|
Loading…
Reference in a new issue