Skip to content

Commit

Permalink
gh action upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
mnsrulz committed Jan 23, 2024
1 parent d07362f commit c6768bd
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: CI
on:
- push
- pull_request
tags: ['*']
branches: [main]
jobs:
test:
name: Node.js ${{ matrix.node-version }}
build:
runs-on: ubuntu-latest
name: Node.js ${{ matrix.node-version }}
strategy:
fail-fast: false
matrix:
Expand All @@ -20,3 +20,28 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test

create-release:
needs: build
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true

publish-npm:
needs: create-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit c6768bd

Please sign in to comment.