-
Notifications
You must be signed in to change notification settings - Fork 5.5k
47 lines (40 loc) · 1.12 KB
/
start_release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: start_release
on:
workflow_dispatch:
inputs:
releaseKind:
description: 'Kind of release'
default: 'patch'
type: choice
options:
- patch
- minor
- major
required: true
jobs:
build:
name: start release
runs-on: ubuntu-22.04
timeout-minutes: 30
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
RUSTC_FORCE_INCREMENTAL: 1
steps:
- name: Configure git
run: |
git config --global core.symlinks true
git config --global fetch.parallel 32
- name: Clone repository
uses: actions/checkout@v3
- name: Install deno
uses: denoland/setup-deno@v1
with:
# use a recent version instead of the latest version in case
# the latest version ever has issues that breaks publishing
deno-version: v1.31.3
- name: Create Gist URL
env:
GITHUB_TOKEN: ${{ secrets.DENOBOT_GIST_PAT }}
GH_WORKFLOW_ACTOR: ${{ github.actor }}
run: ./tools/release/00_start_release.ts --${{github.event.inputs.releaseKind}}