Skip to content

Commit

Permalink
Improve release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hudson-newey committed Sep 29, 2024
1 parent e890a9a commit 71c4677
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 34 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/go.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish

on:
push:
branches: "main"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.2"

- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H%M%S')"

- name: Tag commit
uses: tvdias/[email protected]
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
tag: "${{ steps.date.outputs.date }}"

- uses: ncipollo/release-action@v1
with:
artifacts: "build/2rm"
tag: "${{ steps.date.outputs.date }}"

0 comments on commit 71c4677

Please sign in to comment.