Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

Commit

Permalink
Fix package build action
Browse files Browse the repository at this point in the history
  • Loading branch information
dpattmann committed Nov 10, 2021
1 parent 42c9560 commit 27242b0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup go env
uses: actions/setup-go@v2.1.4
with:
go-version: '1.16'
- name: Release new package on tag
uses: goreleaser/goreleaser-action@v2
with:
Expand All @@ -31,6 +37,8 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
Expand Down

0 comments on commit 27242b0

Please sign in to comment.