feat: add build for platformes #11
Workflow file for this run
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: Build and Release | |
concurrency: release | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
matrix: | |
go-version: [1.22.1] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Build application | |
run: | | |
make build-ci | |
- name: Create zip file | |
run: | | |
zip -r justdeploy-linux-arm.zip bin/justdeploy-linux-arm | |
zip -r justdeploy-linux-x86.zip bin/justdeploy-linux-x86 | |
zip -r justdeploy-darwin-arm.zip bin/justdeploy-darwin-arm | |
zip -r justdeploy-darwin-x86.zip bin/justdeploy-darwin-x86 | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
justdeploy-linux-arm.zip | |
justdeploy-linux-x86.zip | |
justdeploy-darwin-arm.zip | |
justdeploy-darwin-x86.zip |