Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-segning committed Jul 22, 2023
1 parent 3dbc954 commit 6d58ca4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,17 @@ jobs:
asset_name: openapi_cli_linux
os: ubuntu-latest
mv: mv target/release/openapi_gen target/release/openapi_cli_linux
up: target/release/openapi_cli_linux
- target: x86_64-apple-darwin
asset_name: openapi_cli_macos
os: macos-latest
mv: mv target/release/openapi_gen target/release/openapi_cli_macos
up: target/release/openapi_cli_macos
- target: x86_64-pc-windows-gnu
asset_name: openapi_cli_windows.exe
os: windows-latest
mv: mv target\release\openapi_gen.exe openapi_cli_windows.exe
up: target\release\openapi_cli_windows.exe

steps:
- uses: actions/checkout@v3
Expand All @@ -48,7 +51,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.asset_name }}
path: target/release/${{ matrix.asset_name }}
path: ${{ matrix.up }}

release:
permissions: write-all
Expand Down

0 comments on commit 6d58ca4

Please sign in to comment.