Update ci.yml

This commit is contained in:
序列号 2023-03-19 19:51:25 +08:00 committed by GitHub
parent ea33ee758e
commit 87974d8822
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 7 deletions

View File

@ -34,8 +34,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v3
with:
@ -55,16 +54,14 @@ jobs:
export LD_FLAGS="-w -s -X main.VERSION=unknown"
go mod tidy
go build -o "output/$BINARY_NAME" -trimpath -ldflags "$LD_FLAGS" ./
echo "FIRMWARE=$PWD/output" >> $GITHUB_ENV
echo "::set-output name=status::success"
- name: Generate release tag
id: tag
if: env.UPLOAD_RELEASE == 'true' && !cancelled()
run: |
echo "::set-output name=release_tag::$(date +"%Y.%m.%d-%H%M")"
echo "::set-output name=status::success"
- name: Upload firmware to release
uses: softprops/action-gh-release@v1
if: steps.tag.outputs.status == 'success' && !cancelled()
@ -72,7 +69,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag.outputs.release_tag }}
files: $FIRMWARE/*
files: env.FIRMWARE/*
- name: Delete workflow runs
uses: GitRML/delete-workflow-runs@main