-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add GitHub Actions workflow for CI/CD with automated testing, bui…
…lding, and release generation
- Loading branch information
Showing
2 changed files
with
104 additions
and
1 deletion.
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,87 @@ | ||
name: CI/CD Pipeline | ||
|
||
on: | ||
push: | ||
branches: [ main, develop ] | ||
tags: | ||
- 'v*' | ||
pull_request: | ||
branches: [ main, develop ] | ||
|
||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Install Just | ||
uses: extractions/setup-just@v2 | ||
- name: Run Tests | ||
run: just test | ||
|
||
build: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Install Just | ||
uses: extractions/setup-just@v2 | ||
- name: Build | ||
run: just build | ||
|
||
release: | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
needs: [test, build] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21' | ||
- name: Install Just | ||
uses: extractions/setup-just@v2 | ||
|
||
- name: Generate Release Notes | ||
id: release-notes | ||
run: | | ||
# Get the previous tag | ||
PREVIOUS_TAG=$(git describe --tags --abbrev=0 HEAD^) | ||
# Generate changelog | ||
CHANGELOG=$(git log $PREVIOUS_TAG..HEAD --pretty=format:"- %s" --no-merges) | ||
# Escape multiline output for GitHub Actions | ||
CHANGELOG="${CHANGELOG//'%'/'%25'}" | ||
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}" | ||
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}" | ||
echo "changelog=$CHANGELOG" >> $GITHUB_OUTPUT | ||
- name: Build Release Artifacts | ||
run: just build-release | ||
|
||
- name: Create GitHub Release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | | ||
dist/andaime_* | ||
body: | | ||
## Changelog | ||
${{ steps.release-notes.outputs.changelog }} | ||
draft: false | ||
prerelease: false |
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