Polluting my action run history a little bit more

This commit is contained in:
James Eversole 2025-01-23 16:27:24 -06:00
parent e06a124733
commit 9fd8a85af9

View File

@ -2,9 +2,8 @@ name: Test, Build, and Release
on: on:
push: push:
branches: tags:
- main - '*'
- feat/cut-releases
jobs: jobs:
test: test:
@ -14,8 +13,7 @@ jobs:
username: ${{ secrets.REGISTRY_USERNAME }} username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}
steps: steps:
- name: Checkout code - uses: actions/checkout@v3
uses: actions/checkout@v3
with: with:
fetch-depth: 0 fetch-depth: 0
@ -80,12 +78,9 @@ jobs:
with: with:
go-version: '>=1.20.1' go-version: '>=1.20.1'
- name: Release binary - name: Release binary
uses: https://gitea.com/actions/release-action@main uses: https://gitea.com/actions/release-action@main
with: with:
files: |- files: |-
./result/bin/tricu ./result/bin/tricu
api_key: '${{ secrets.RELEASE_TOKEN }}' api_key: '${{ secrets.RELEASE_TOKEN }}'
tag: $(git rev-parse --short HEAD)
title: "Release $(git rev-parse --short HEAD)"
note: "Automated release for commit $(git rev-parse --short HEAD)"