2023-05-24 16:46:28 +08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
# Sequence of patterns matched against refs/tags
|
|
|
|
tags:
|
|
|
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
|
|
|
|
name: Create Release And Upload assets
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
create-release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Install cross-compilers
|
2023-05-25 15:48:00 +08:00
|
|
|
run: sudo apt-get update && sudo apt-get -y install gcc-x86-64-linux-gnu gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf gcc-powerpc64le-linux-gnu gcc-s390x-linux-gnu
|
2023-05-25 16:46:39 +08:00
|
|
|
- name: Checkout code
|
2023-05-24 16:46:28 +08:00
|
|
|
uses: actions/checkout@v2
|
2023-05-25 16:46:39 +08:00
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
2023-05-24 16:46:28 +08:00
|
|
|
with:
|
|
|
|
node-version: '18.14'
|
|
|
|
- name: Build Web
|
|
|
|
run: |
|
|
|
|
cd frontend && npm install && npm run build:dev
|
|
|
|
env:
|
|
|
|
NODE_OPTIONS: --max-old-space-size=8192
|
2023-05-25 16:46:39 +08:00
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v4
|
2023-05-24 16:46:28 +08:00
|
|
|
with:
|
|
|
|
go-version: '1.20.x'
|
|
|
|
- name: Build Release
|
|
|
|
uses: goreleaser/goreleaser-action@v4
|
|
|
|
with:
|
|
|
|
args: release --skip-publish --clean
|
|
|
|
- name: Upload Assets
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
with:
|
|
|
|
draft: true
|
|
|
|
files: |
|
|
|
|
dist/*.tar.gz
|
|
|
|
dist/checksums.txt
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|