diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml index edf3777..5517dac 100644 --- a/.github/workflows/releaser.yml +++ b/.github/workflows/releaser.yml @@ -45,13 +45,15 @@ jobs: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Download goreleaser config - run: curl -o .goreleaser.yaml https://raw.githubusercontent.com/fortio/workflows/main/goreleaser.yaml + run: | + mkdir ../cfg + curl -o ../cfg/goreleaser.yaml https://raw.githubusercontent.com/fortio/workflows/main/goreleaser.yaml - name: "GoReleaser Action" uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8 # pin@v5.0.0 with: distribution: goreleaser version: latest - args: release --clean + args: release --clean --config ../cfg/goreleaser.yaml env: GITHUB_TOKEN: ${{ secrets.GH_PAT }} TAP_DESCRIPTION: ${{ inputs.description }}