Skip to content

The One Year Usage Review #4

The One Year Usage Review

The One Year Usage Review #4

Workflow file for this run

on:
release:
types: [created]
name: Handle Release
jobs:
generate:
name: Create release-artifacts
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install upx
run: sudo apt install upx
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ">=1.20"
- name: Generate the artifacts
run: make release
- name: Upload the artifacts
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'build/git-spend*'