Skip to content

Publish and release #12

Publish and release

Publish and release #12

Workflow file for this run

name: Publish and release
on:
workflow_dispatch:
repository_dispatch:
types:
- release-triggered
jobs:
release:
runs-on: ubuntu-latest
env:
NODE_VERSION: 20
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://registry.npmjs.org'
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTOMATION_TOKEN}}
- name: "release"
id: publish
run: script/ci/release.sh
env:
GITHUB_TOKEN: ${{ github.token }}
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ steps.publish.outputs.version }}
name: Release v${{ steps.publish.outputs.version }}
body: ${{steps.publish.outputs.notes}}
draft: false
prerelease: false