ci(release): add release workflow

Add release workflow
This commit is contained in:
Conicaw 2023-07-05 17:49:45 -05:00
parent f20fff9613
commit fba298ddd7
No known key found for this signature in database
GPG key ID: CE0B9DEFED1E6375

47
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,47 @@
name: release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v3.6.0
with:
node-version: '20.x'
- name: Checkout
uses: actions/checkout@v3.5.0
- name: Cache node modules
id: cache-npm
uses: actions/cache@v3.3.1
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
name: List the state of node modules
continue-on-error: true
run: npm list
- name: Install dependencies
run: npm ci
- name: Semantic release
id: release
uses: ahmadnassri/action-semantic-release@v2.2.3
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}