mirror of
https://github.com/asherkin/accelerator.git
synced 2025-12-07 10:28:29 +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
|
# path: build/package
|
||||||
|
|
||||||
- name: Package release - Windows
|
- name: Package release - Windows
|
||||||
if: startsWith("${{ env.PROJECT_OS }}", 'windows-latest')
|
if: ${{ startsWith(env.PROJECT_OS, 'windows-latest') }}
|
||||||
# shell: pwsh
|
# shell: pwsh
|
||||||
working-directory: extension/build/package
|
working-directory: build/package
|
||||||
run: |
|
run: |
|
||||||
Compress-Archive -Path * -Destination ${{ env.ZIP_FILENAME }}
|
Compress-Archive -Path * -Destination ${{ env.ZIP_FILENAME }}
|
||||||
Copy-Item -Path ${{ env.ZIP_FILENAME }} -Destination ${{ matrix.os }}_${{ matrix.cc }}_${{ env.ZIP_FILENAME }}
|
Copy-Item -Path ${{ env.ZIP_FILENAME }} -Destination ${{ matrix.os }}_${{ matrix.cc }}_${{ env.ZIP_FILENAME }}
|
||||||
|
|
||||||
- name: Package release - Linux
|
- name: Package release - Linux
|
||||||
if: startsWith("${{ env.PROJECT_OS }}", 'ubuntu-22.04')
|
if: ${{ startsWith(env.PROJECT_OS, 'ubuntu-22.04') }}
|
||||||
working-directory: build/package
|
working-directory: build/package
|
||||||
run: |
|
run: |
|
||||||
zip -r "${{ env.ZIP_FILENAME }}" .
|
zip -r "${{ env.ZIP_FILENAME }}" .
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user