chore: remove temporary build workflow
This commit is contained in:
parent
83360194da
commit
55691cd423
1 changed files with 0 additions and 30 deletions
30
.github/workflows/build.yml
vendored
30
.github/workflows/build.yml
vendored
|
|
@ -1,30 +0,0 @@
|
||||||
name: Build Fixed PicoClaw
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ main ]
|
|
||||||
pull_request:
|
|
||||||
branches: [ main ]
|
|
||||||
workflow_dispatch: # Allows you to trigger it manually
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Set up Go
|
|
||||||
uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: '1.21' # PicoClaw usually needs 1.21+
|
|
||||||
|
|
||||||
- name: Build Windows Binary
|
|
||||||
run: |
|
|
||||||
GOOS=windows GOARCH=amd64 go build -o picoclaw-fixed.exe ./cmd/picoclaw
|
|
||||||
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: picoclaw-windows-binary
|
|
||||||
path: picoclaw-fixed.exe
|
|
||||||
Loading…
Add table
Reference in a new issue