mirror of
https://github.com/classchartsapi/classcharts-api-js.git
synced 2026-05-11 18:59:05 +00:00
36 lines
982 B
YAML
36 lines
982 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v3
|
|
- uses: denoland/setup-deno@v1
|
|
with:
|
|
deno-version: v1.36.x
|
|
- name: Get tag version
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
id: get_tag_version
|
|
run: echo TAG_VERSION=${GITHUB_REF/refs\/tags\//} >> $GITHUB_OUTPUT
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "18.x"
|
|
registry-url: "https://registry.npmjs.org"
|
|
- uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 8
|
|
- name: npm build
|
|
run: deno task npm ${{steps.get_tag_version.outputs.TAG_VERSION}}
|
|
- name: npm publish
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
run: cd npm && npm publish
|