mirror of
https://github.com/asherkin/accelerator.git
synced 2025-12-06 18:08:30 +00:00
correct syntax
This commit is contained in:
parent
4b16322890
commit
8184ead470
6
.github/workflows/build-extension.yml
vendored
6
.github/workflows/build-extension.yml
vendored
@ -121,15 +121,15 @@ jobs:
|
||||
# path: build/package
|
||||
|
||||
- name: Package release - Windows
|
||||
if: startsWith("${{ env.PROJECT_OS }}", 'windows-latest')
|
||||
if: ${{ startsWith(env.PROJECT_OS, 'windows-latest') }}
|
||||
# shell: pwsh
|
||||
working-directory: extension/build/package
|
||||
working-directory: build/package
|
||||
run: |
|
||||
Compress-Archive -Path * -Destination ${{ env.ZIP_FILENAME }}
|
||||
Copy-Item -Path ${{ env.ZIP_FILENAME }} -Destination ${{ matrix.os }}_${{ matrix.cc }}_${{ env.ZIP_FILENAME }}
|
||||
|
||||
- name: Package release - Linux
|
||||
if: startsWith("${{ env.PROJECT_OS }}", 'ubuntu-22.04')
|
||||
if: ${{ startsWith(env.PROJECT_OS, 'ubuntu-22.04') }}
|
||||
working-directory: build/package
|
||||
run: |
|
||||
zip -r "${{ env.ZIP_FILENAME }}" .
|
||||
|
||||
Loading…
Reference in New Issue
Block a user