Skip to content

Commit

Permalink
Merge pull request #32 from uyuni-project/release
Browse files Browse the repository at this point in the history
release workflow
  • Loading branch information
mcalmer authored May 21, 2024
2 parents 6b4a8d2 + c61afa6 commit 964fbe8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v4

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 964fbe8

Please sign in to comment.