upgrading go.mod #8
Workflow file for this run
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: 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 |