diff --git a/.github/workflows/goreleaser-test.yml b/.github/workflows/goreleaser-test.yml new file mode 100644 index 00000000..4ad49bec --- /dev/null +++ b/.github/workflows/goreleaser-test.yml @@ -0,0 +1,33 @@ +name: GoReleaser Test + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version-file: go.mod + + - name: Setup Zig + uses: goto-bus-stop/setup-zig@v2 + + - name: Run GoReleaser check + uses: goreleaser/goreleaser-action@v4 + with: + version: latest + args: check + + - name: Run GoReleaser build + uses: goreleaser/goreleaser-action@v4 + with: + version: latest + args: build \ No newline at end of file