Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*.*.*-rc*'
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: output
- name: Publish Release
uses: softprops/action-gh-release@v2
with:
body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
files: |
rulesets/*
dist/*.js
modules/*
make_latest: "true"