Skip to content

chore: @nsnanocat/util #3

chore: @nsnanocat/util

chore: @nsnanocat/util #3

Workflow file for this run

name: Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- v[0-9]+.[0-9]+.[0-9]+
permissions:
actions: read
contents: write
jobs:
build:
uses: ./.github/workflows/build.yml
secrets: inherit
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Download artifact
uses: actions/download-artifact@master
with:
name: artifact
- name: Publish Release
uses: softprops/action-gh-release@v2
with:
body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
files: |
rulesets/*
dist/*
make_latest: "true"