From 27242b085abe143f9152d4bdb83f33a5fe77c32c Mon Sep 17 00:00:00 2001 From: Dennis Pattmann Date: Wed, 10 Nov 2021 21:43:25 +0100 Subject: [PATCH] Fix package build action --- .github/workflows/default.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 37394e7..a61755f 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -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: @@ -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