-
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.
* ci: create release workflow with automated changelogs * ci: added working directory to release part * ci: change the files part of the release workflow
- Loading branch information
Showing
1 changed file
with
70 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,70 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
- uses: actions/checkout@v4 | ||
- name: Auto Changelog | ||
uses: ardalanamini/[email protected] | ||
id: changelog | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-types: | | ||
feat: New Features | ||
fix: Bug Fixes | ||
build: Build System & Dependencies | ||
perf: Performance Improvements | ||
docs: Documentation | ||
test: Tests | ||
refactor: Refactors | ||
chore: Chores | ||
ci: CI | ||
cd: CD | ||
style: Code Style | ||
revert: Reverts | ||
- name: Install dependencies | ||
working-directory: src | ||
run: go mod tidy | ||
- name: Run tests | ||
working-directory: src | ||
run: go test ./... | ||
- name: Build | ||
working-directory: src | ||
run: | | ||
tag=$(git describe --tags --abbrev=0) | ||
# Linux build | ||
GOOS=linux GOARCH=amd64 go build -o bin/linux/aion-cli | ||
release_name_linux="aion-cli-$tag-linux" | ||
tar -czvf bin/linux/$release_name_linux.tar.gz bin/linux/aion-cli | ||
GOOS=darwin GOARCH=amd64 go build -o bin/darwin/aion-cli | ||
release_name_macos="aion-cli-$tag-macos" | ||
tar -czvf bin/darwin/$release_name_macos.tar.gz bin/darwin/aion-cli | ||
GOOS=windows GOARCH=amd64 go build -o bin/windows/aion-cli.exe | ||
release_name_windows="aion-cli-$tag-windows" | ||
tar -czvf bin/windows/$release_name_windows.tar.gz bin/windows/aion-cli.exe | ||
# Maybe create a arm build for macos | ||
- name: Release project | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
body: ${{steps.changelog.outputs.changelog}} | ||
files: "./src/bin/*.tar.gz" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
|
||
|