forked from wemixarchive/go-wemix
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (59 loc) · 2.78 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: "Release a tag as draft"
on:
push:
tags:
- w*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
#- name: Build Go-WEMIX tarball
# run: make gwemix.tar.gz
#- name: Stat Go-WEMIX tarball
# run: ls -l build/gwemix.tar.gz && tar tf build/gwemix.tar.gz
- name: GH Release
uses: softprops/[email protected]
with:
# Note-worthy description of changes in release
#body: # optional
# Path to load note-worthy description of changes in release from
#body_path: # optional
# Gives the release a custom name. Defaults to tag name
#name: # optional
# Gives a tag name. Defaults to github.GITHUB_REF
#tag_name: # optional
# Creates a draft release. Defaults to false
draft: true
# Identify the release as a prerelease. Defaults to false
#prerelease: # optional
# Newline-delimited list of path globs for asset files to upload
files: |
README.md
Dockerfile
# Fails if any of the `files` globs match nothing. Defaults to false
#fail_on_unmatched_files: # optional
# Repository to make releases against, in <owner>/<repo> format
#repository: # optional
# Authorized secret GitHub Personal Access Token. Defaults to github.token
#token: # optional, default is ${{ github.token }}
# Commitish value that determines where the Git tag is created from. Can be any branch or commit SHA.
#target_commitish: # optional
# If specified, a discussion of the specified category is created and linked to the release. The value must be a category that already exists in the repository. If there is already a discussion linked to the release, this parameter is ignored.
#discussion_category_name: # optional
# Whether to automatically generate the name and body for this release. If name is specified, the specified name will be used; otherwise, a name will be automatically generated. If body is specified, the body will be pre-pended to the automatically generated notes.
#generate_release_notes: # optional
# Append to existing body instead of overwriting it. Default is false.
#append_body: # optional
# Specifies whether this release should be set as the latest release for the repository. Drafts and prereleases cannot be set as latest. Can be `true`, `false`, or `legacy`. Uses GitHub api default if not provided
#make_latest: # optional
- name: Upload Go test results
uses: actions/upload-artifact@v4
with:
name: artifact-${{ github.sha }}
path: README.md
retention-days: 1