Merge pull request #5 from priyashpatil/fix/ci-build #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install dependencies | |
run: go mod download | |
- name: Build for multiple platforms | |
run: | | |
GOOS=linux GOARCH=amd64 go build -o build/phpup-linux-amd64 | |
GOOS=linux GOARCH=arm64 go build -o build/phpup-linux-arm64 | |
GOOS=darwin GOARCH=amd64 go build -o build/phpup-darwin-amd64 | |
GOOS=darwin GOARCH=arm64 go build -o build/phpup-darwin-arm64 | |
GOOS=windows GOARCH=amd64 go build -o build/phpup-windows-amd64.exe | |
- name: Install semantic-release | |
run: | | |
npm install -g semantic-release @semantic-release/github @semantic-release/git @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/release-notes-generator | |
- name: Semantic Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: npx semantic-release |