-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add release workflow (thanks chatgpt)
- Loading branch information
Showing
1 changed file
with
92 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
name: Build, Tag, and Release Application | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*-*' | ||
|
||
jobs: | ||
build_and_release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: '1.23.4' | ||
|
||
- name: Cache Go Modules | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cache/go-build | ||
~/.go/pkg/mod | ||
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.mod') }} | ||
restore-keys: | | ||
${{ runner.os }}-go-mod- | ||
- name: Build for GitHub Actions | ||
run: make build_gh_actions | ||
|
||
- name: Get Version from Makefile | ||
id: get_version | ||
run: | | ||
VERSION=$(make -s version | grep 'Version:' | awk '{print $2}') | ||
echo "VERSION=${VERSION}" >> $GITHUB_ENV | ||
- name: Create or Update Git Tag | ||
id: create_tag | ||
uses: rickstaa/[email protected] | ||
with: | ||
tag: ${{ env.VERSION }} | ||
message: "Release ${{ env.VERSION }}" | ||
force_push_tag: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Create GitHub Release | ||
id: create_release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ env.VERSION }} | ||
name: Release ${{ env.VERSION }} | ||
body: | | ||
A new release of the application is now available. | ||
- Version: ${{ env.VERSION }} | ||
draft: false | ||
prerelease: ${{ env.PRE_RELEASE == 'true' }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload Linux AMD64 Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./ksau-go-linux-amd64 | ||
asset_name: ksau-go-linux-amd64 | ||
asset_content_type: application/octet-stream | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload Windows AMD64 Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./ksau-go-windows-amd64 | ||
asset_name: ksau-go-windows-amd64 | ||
asset_content_type: application/octet-stream | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload Linux ARM64 Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./ksau-go-linux-arm64 | ||
asset_name: ksau-go-linux-arm64 | ||
asset_content_type: application/octet-stream | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |