From 6d86391559f67cce8f0b477f2dd40606583f2ec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Mon, 6 May 2024 16:52:07 +0900 Subject: [PATCH] make lint happy --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba3202d..5707242 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,15 +24,15 @@ jobs: # SUCCESS: the typical value for $? per OS (Windows/pwsh returns 'True') include: - os: ubuntu-latest - XCADDY_BIN_PATH: ./cmd/xcaddy/xcaddy + XCADDY_BIN_PATH: ./cmd/xgo-cqhttp/xgo-cqhttp SUCCESS: 0 - os: macos-latest - XCADDY_BIN_PATH: ./cmd/xcaddy/xcaddy + XCADDY_BIN_PATH: ./cmd/xgo-cqhttp/xgo-cqhttp SUCCESS: 0 - os: windows-latest - XCADDY_BIN_PATH: ./cmd/xcaddy/xcaddy.exe + XCADDY_BIN_PATH: ./cmd/xgo-cqhttp/xgo-cqhttp.exe SUCCESS: 'True' runs-on: ${{ matrix.os }} @@ -72,7 +72,7 @@ jobs: go get -v -t -d ./... - name: Build xcaddy - working-directory: ./cmd/xcaddy + working-directory: ./cmd/xgo-cqhttp env: CGO_ENABLED: 0 run: | @@ -85,7 +85,7 @@ jobs: - name: Publish Build Artifact uses: actions/upload-artifact@v1 with: - name: xcaddy_${{ runner.os }}_go${{ matrix.go }}_${{ steps.vars.outputs.short_sha }} + name: xgo-cqhttp_${{ runner.os }}_go${{ matrix.go }}_${{ steps.vars.outputs.short_sha }} path: ${{ matrix.XCADDY_BIN_PATH }} - name: Run tests