Skip to content

Commit

Permalink
CI: fix github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fcharlie committed Nov 22, 2024
1 parent 50d4484 commit a0c82fb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
platform: [ubuntu-latest, macos-latest, windows-latest]
include:
- platform: ubuntu-latest
release_script: ./script/release.sh
release_command: ./script/release.sh
- platform: macos-latest
release_script: ./script/release.sh
release_command: ./script/release.sh
- platform: windows-latest
release_script: script/release.bat
release_command: pwsh -NoProfile -NoLogo -ExecutionPolicy unrestricted -File "./script/release.ps1"
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
Expand All @@ -35,7 +35,7 @@ jobs:
with:
go-version: "stable"
- name: Build
run: ${{ matrix.release_script }}
run: ${{ matrix.release_command }}
- name: Upload release
uses: svenstaro/upload-release-action@v2
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit a0c82fb

Please sign in to comment.