t #43
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: release | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
permissions: | |
contents: write | |
jobs: | |
build_fe: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- name: Build | |
working-directory: frontend | |
run: | | |
npm i && npm run build | |
- name: Upload dist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fe_dist | |
path: frontend/build | |
retention-days: 1 | |
build_be: | |
needs: build_fe | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download the dist of FE | |
uses: actions/download-artifact@v4 | |
with: | |
name: fe_dist | |
path: frontend/build/ | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.22" | |
- name: Build for Darwin | |
if: ${{ startsWith(matrix.os, 'macos') }} | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
args: release --skip=publish --clean --config .goreleaser.darwin.yaml | |
- name: Prepare for Linux and Windows | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
run: | | |
sudo apt-get install -y gcc-aarch64-linux-gnu gcc-mingw-w64 | |
- name: Build for Linux | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
args: release --skip=publish --clean --config .goreleaser.linux.yaml | |
- name: Build for Windows | |
if: ${{ startsWith(matrix.os, 'ubuntu') }} | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
args: release --skip=publish --clean --config .goreleaser.windows.yaml | |
- name: Upload dist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "be_${{ matrix.os }}_dist" | |
path: | | |
dist/*.zip | |
dist/*_checksums.txt | |
retention-days: 1 | |
publish: | |
needs: [build_be] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create dist dir | |
run: | | |
mkdir -p ./dist/ | |
- name: Download the dist of BE | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: be_*_dist | |
path: ./dist/ | |
merge-multiple: true | |
- name: Merge checksums | |
working-directory: ./dist | |
run: | | |
cat *_checksums.txt >> checksums.txt | |
rm *_checksums.txt | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # for goreleaser generating changelog | |
- name: Publish release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
args: release --config .goreleaser.yaml |