Skip to content

Draft Release

Draft Release #32

name: Draft Release
on: workflow_dispatch
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
draft-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: "main"
- run: git fetch --prune --unshallow
- name: Setup
uses: ./.github/actions/setup-hs
- name: Draft Release
run: |
git config --global user.name "GitHub"
git config --global user.email "<noreply@github.com>"
npm run release -- open
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}