mirror of
https://github.com/xiaoqidun/alive.git
synced 2025-12-25 23:28:35 +08:00
This commit is contained in:
3
.gitea/workflows/build.sh
Normal file
3
.gitea/workflows/build.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o release/alive_amd64.exe -trimpath -ldflags "-H windowsgui -s -w -buildid=" alive.go
|
||||
GOOS=windows GOARCH=arm64 CGO_ENABLED=0 go build -o release/alive_arm64.exe -trimpath -ldflags "-H windowsgui -s -w -buildid=" alive.go
|
||||
24
.gitea/workflows/build.yaml
Normal file
24
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,24 @@
|
||||
on: [push, workflow_dispatch]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: cn
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v6
|
||||
- name: docker goenv
|
||||
uses: docker://ccr.ccs.tencentyun.com/xiaoqidun/goenv:latest
|
||||
env:
|
||||
GIT_SERVER: ${{ secrets.git_server }}
|
||||
GIT_USER: ${{ secrets.git_user }}
|
||||
GIT_TOKEN: ${{ secrets.git_token }}
|
||||
with:
|
||||
args: bash .gitea/workflows/build.sh
|
||||
- name: upload to cos
|
||||
uses: xiaoqidun/gocos@main
|
||||
with:
|
||||
secret_id: ${{ secrets.cos_secret_id }}
|
||||
secret_key: ${{ secrets.cos_secret_key }}
|
||||
bucket_url: ${{ secrets.cos_bucket_url }}
|
||||
source_path: release
|
||||
target_path: product/alive
|
||||
strip_prefix: release
|
||||
Reference in New Issue
Block a user