-
Notifications
You must be signed in to change notification settings - Fork 10
64 lines (49 loc) · 1.59 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
name: Build and Release
on:
push:
branches:
- master
jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22.2'
check-latest: true
- name: Build
run: go build -o FTPDumper .
- name: Compress binary file
uses: crazy-max/ghaction-upx@v3
with:
files: FTPDumper
args: --ultra-brute --best -q
- name: Auto Increment Semver Action
uses: MCKanpolat/auto-semver-action@v1
id: versioning
with:
releaseType: patch
incrementPerCommit: true
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Next Release Number
run: echo ${{ steps.versioning.outputs.version }}
- name: Upload binary file
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: MatrixTM/FTPDumper
with:
files: FTPDumper
tag_name: release-${{ steps.versioning.outputs.version }}
name: Release ${{ steps.versioning.outputs.version }}
repository: MatrixTM/FTPDumper
body: |
## Release ${{ steps.versioning.outputs.version }} 💭
${{ github.event.head_commit.message }}
[Download 📥](https://github.com/MatrixTM/FTPDumper/releases/download/release-${{ steps.versioning.outputs.version }}/FTPDumper)
permissions:
contents: write
packages: write