Skip to content

Commit

Permalink
Update go.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rowansmithhc authored Nov 24, 2023
1 parent 0d76047 commit 46b75cc
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,24 @@ jobs:
- name: Build
run: CGO_ENABLED=0 go build cmd/cloudflare/main.go

release-linux-amd64:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64

release-linux-arm64:
name: release linux/arm64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create a Release
uses: elgohr/Github-Release-Action@v5
env:
GH_TOKEN: ${{ github.token }}
- uses: wangyoucao577/go-release-action@v1
with:
title: vault-plugin-secrets-cloudflare
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: arm64

0 comments on commit 46b75cc

Please sign in to comment.