Update README.md #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |