release #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
workflow_dispatch: | |
inputs: | |
releaseKind: | |
description: 'Kind of release' | |
type: choice | |
options: | |
- patch | |
- minor | |
required: true | |
jobs: | |
rust: | |
name: release | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.DENOBOT_PAT }} | |
- uses: denoland/setup-deno@v1 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- name: Tag and release | |
env: | |
GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }} | |
GH_WORKFLOW_ACTOR: ${{ github.actor }} | |
run: | | |
git config user.email "denobot@users.noreply.github.com" | |
git config user.name "denobot" | |
deno run -A https://raw.githubusercontent.com/denoland/automation/0.20.0/tasks/publish_release.ts --${{github.event.inputs.releaseKind}} |