forked from seedhodler/shamir
-
Notifications
You must be signed in to change notification settings - Fork 1
136 lines (121 loc) · 4.83 KB
/
build-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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Build Release
on:
workflow_dispatch:
inputs:
version:
description: "Version Number ('0.x.y')"
required: true
permissions:
contents: write
jobs:
create_release:
name: Create Release
needs: []
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 100
ref: ${{ github.sha }}
# build package & binaries
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install npm dependencies
run: |
npm install
- name: Build js package
run: |
npm run build
- name: Build executables
run: |
npm run pkg
# generate release changelog
- name: "Generate release changelog"
id: changelog
run: |
git fetch --tags
prev_tag=$(git tag --sort=-version:refname | grep -e "^v[0-9.]*$" | head -n 1)
echo "previous release: $prev_tag"
if [ "$prev_tag" ]; then
changelog=$(git log --oneline --no-decorate $prev_tag..HEAD)
else
changelog=$(git log --oneline --no-decorate)
fi
echo "changelog<<EOF" >> $GITHUB_OUTPUT
echo " - ${changelog//$'\n'/$'\n' - }" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
# create draft release
- name: Create latest release
uses: actions/create-release@v1
id: create_release
with:
draft: true
prerelease: false
release_name: "v${{ inputs.version }}"
tag_name: "v${{ inputs.version }}"
body: |
### Major Changes
- Add major changes here
<details>
<summary>Full changelog</summary>
### Changes
${{ steps.changelog.outputs.changelog }}
</details>
### Release Artifacts
| Release File | Description |
| ------------- | ------------- |
| [shamir39-cli-win64.exe](https://github.com/pk910/shamir39-cli/releases/download/v${{ inputs.version }}/shamir39-cli-win64.exe) | shamir39-cli executable for windows/amd64 |
| [shamir39-cli-linux-amd64](https://github.com/pk910/shamir39-cli/releases/download/v${{ inputs.version }}/shamir39-cli-linux-amd64) | shamir39-cli executable for linux/amd64 |
| [shamir39-cli-linux-arm64](https://github.com/pk910/shamir39-cli/releases/download/v${{ inputs.version }}/shamir39-cli-linux-arm64) | shamir39-cli executable for linux/arm64 |
| [shamir39-cli-darwin-amd64](https://github.com/pk910/shamir39-cli/releases/download/v${{ inputs.version }}/shamir39-cli-darwin-amd64) | shamir39-cli executable for macos/amd64 |
| [shamir39-cli-darwin-arm64](https://github.com/pk910/shamir39-cli/releases/download/v${{ inputs.version }}/shamir39-cli-darwin-arm64) | shamir39-cli executable for macos/arm64 |
env:
GITHUB_TOKEN: ${{ github.token }}
# generate & upload release artifacts
- name: "Upload release artifact: shamir39-cli-win64.exe"
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/shamir39-cli-win-x64.exe
asset_name: shamir39-cli-win64.exe
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ github.token }}
- name: "Upload release artifact: shamir39-cli-linux-amd64"
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/shamir39-cli-linux-x64
asset_name: shamir39-cli-linux-amd64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ github.token }}
- name: "Upload release artifact: shamir39-cli-linux-arm64"
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/shamir39-cli-linux-arm64
asset_name: shamir39-cli-linux-arm64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ github.token }}
- name: "Upload release artifact: shamir39-cli-darwin-amd64"
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/shamir39-cli-macos-x64
asset_name: shamir39-cli-darwin-amd64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ github.token }}
- name: "Upload release artifact: shamir39-cli-darwin-arm64"
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/shamir39-cli-macos-arm64
asset_name: shamir39-cli-darwin-arm64
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ github.token }}