Skip to content

[Fix] 🐛 Github Action workflow #2

[Fix] 🐛 Github Action workflow

[Fix] 🐛 Github Action workflow #2

Workflow file for this run

name: Build Go-Proxy-BingAI
on:
push:
tags:
- v*
jobs:
build_and_release:

Check failure on line 8 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build Go-Proxy-BingAI

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 8, Col: 3): The workflow must contain at least one job with no dependencies.
name: build
needs: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.17.0
- name: Build Frontend
run: |
rm -r web/* && git checkout web/web.go
cd frontend
npm install
npm run build
cd ..
- name: Build binary
run: |
GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -tags netgo -trimpath -o go-proxy-bingai main.go && tar -zcvf go-proxy-bingai-linux-amd64.tar.gz go-proxy-bingai
GOOS=linux GOARCH=arm64 go build -ldflags="-s -w" -tags netgo -trimpath -o go-proxy-bingai main.go && tar -zcvf go-proxy-bingai-linux-arm64.tar.gz go-proxy-bingai
GOOS=windows GOARCH=amd64 go build -ldflags="-s -w" -tags netgo -trimpath -o go-proxy-bingai.exe main.go && tar -zcvf go-proxy-bingai-windows-amd64.tar.gz go-proxy-bingai.exe
GOOS=windows GOARCH=arm64 go build -ldflags="-s -w" -tags netgo -trimpath -o go-proxy-bingai.exe main.go && tar -zcvf go-proxy-bingai-windows-arm64.tar.gz go-proxy-bingai.exe
GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w" -tags netgo -trimpath -o go-proxy-bingai main.go && tar -zcvf go-proxy-bingai-darwin-amd64.tar.gz go-proxy-bingai
GOOS=darwin GOARCH=arm64 go build -ldflags="-s -w" -tags netgo -trimpath -o go-proxy-bingai main.go && tar -zcvf go-proxy-bingai-darwin-arm64.tar.gz go-proxy-bingai
- name: Create Release and Upload Release Asset
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref }}
name: v${{ github.ref }}
body: TODO New Release.
draft: false
prerelease: false
files: |
go-proxy-bingai-linux-amd64.tar.gz
go-proxy-bingai-linux-arm64.tar.gz
go-proxy-bingai-windows-amd64.tar.gz
go-proxy-bingai-windows-arm64.tar.gz
go-proxy-bingai-darwin-amd64.tar.gz
go-proxy-bingai-darwin-arm64.tar.gz