forked from Mirror/attic-action
31 lines
595 B
YAML
31 lines
595 B
YAML
|
name: Release
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [published, edited]
|
||
|
|
||
|
permissions:
|
||
|
contents: write
|
||
|
|
||
|
jobs:
|
||
|
release:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
with:
|
||
|
ref: ${{ github.event.release.tag_name }}
|
||
|
|
||
|
- uses: pnpm/action-setup@v2
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
cache: pnpm
|
||
|
cache-dependency-path: pnpm-lock.yaml
|
||
|
|
||
|
- name: Build
|
||
|
run: pnpm install && pnpm build
|
||
|
|
||
|
- uses: JasonEtco/build-and-tag-action@v2
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ github.token }}
|