fix: make shell feature can work behind web proxy #3
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 with release' | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-ui: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: git submodule update --init --recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/Hydrogen' | |
cache: 'npm' | |
cache-dependency-path: 'ui' | |
- run: npm i | |
working-directory: ./ui/ | |
- run: npm run build | |
working-directory: ./ui/ | |
- uses: actions/upload-artifact@master | |
with: | |
name: ui | |
path: ./ui/dist | |
build-linux: | |
runs-on: ubuntu-latest | |
needs: build-ui | |
strategy: | |
matrix: | |
goos: [linux] | |
goarch: [amd64, arm64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'backend/go.mod' | |
cache-dependency-path: 'backend/go.sum' | |
- uses: actions/download-artifact@master | |
with: | |
name: ui | |
path: backend/embed/ui | |
- name: Build for Linux | |
working-directory: ./backend | |
run: | | |
env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o als-${{ matrix.goos }}-${{ matrix.goarch }} | |
- uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: backend/als-${{ matrix.goos }}-${{ matrix.goarch }} | |
asset_name: als-${{ matrix.goos }}-${{ matrix.goarch }} | |
tag: ${{ github.ref }} | |
build-macos: | |
runs-on: ubuntu-latest | |
needs: build-ui | |
strategy: | |
matrix: | |
goos: [darwin] | |
goarch: [amd64, arm64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'backend/go.mod' | |
cache-dependency-path: 'backend/go.sum' | |
- uses: actions/download-artifact@master | |
with: | |
name: ui | |
path: backend/embed/ui | |
- name: Build for macOS | |
working-directory: ./backend | |
run: | | |
env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -v -o als-${{ matrix.goos }}-${{ matrix.goarch }} | |
- uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: backend/als-${{ matrix.goos }}-${{ matrix.goarch }} | |
asset_name: als-${{ matrix.goos }}-${{ matrix.goarch }} | |
tag: ${{ github.ref }} |