-
Notifications
You must be signed in to change notification settings - Fork 5
42 lines (39 loc) · 1.17 KB
/
create-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
name: 'Create Release'
on:
push:
tags:
- '**'
workflow_dispatch:
inputs:
tag:
required: false
type: string
jobs:
create_release:
name: 'Create Release'
runs-on: 'ubuntu-latest'
steps:
- name: Print variable if not empty
if: "${{ github.event.inputs.tag != '' }}"
run: 'echo "RELEASE_TAG=${{github.event.inputs.tag}}" >> $GITHUB_ENV'
- name: 'Determine tag'
if: "${{ github.event.inputs.tag == '' }}"
run: 'echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV'
- name: 'Create release'
uses: 'actions/github-script@v5'
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
script: |
try {
await github.rest.repos.createRelease({
draft: true,
generate_release_notes: true,
name: process.env.RELEASE_TAG,
owner: context.repo.owner,
prerelease: false,
repo: context.repo.repo,
tag_name: process.env.RELEASE_TAG,
});
} catch (error) {
core.setFailed(error.message);
}