Skip to content

Commit

Permalink
Continuous Building
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlinat committed Feb 23, 2024
1 parent b4bd0d9 commit 082b334
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/continuous-building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ jobs:
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
run: |
make package
7z x "$(find . -type f -name '${{ env.ARTIFACT_DIRECTORY_NAME }}-*-linux.zip' | head -n 1)"
7z x "$(find . -type f -name '${{ env.ARTIFACT_DIRECTORY_NAME }}-*-linux.zip' | head -n 1)" -y
mv ${{ env.ARTIFACT_DIRECTORY_NAME }}-*-linux/ ${{ env.ARTIFACT_DIRECTORY_NAME }}-linux/
shell: bash
- name: "Linux: Pack and upload the artifact"
Expand Down Expand Up @@ -380,7 +380,8 @@ jobs:
if: ${{ startsWith(matrix.os, 'windows-') }}
run: |
make package
7z x "$(find . -type f -name '${{ env.ARTIFACT_DIRECTORY_NAME }}-*-windows.zip' | head -n 1)"
$zipFile = Get-ChildItem -Name "${env:ARTIFACT_DIRECTORY_NAME}-*-windows.zip" | Select-Object -First 1
7z x $zipFile -y
mv ${env:ARTIFACT_DIRECTORY_NAME}-*-windows/ ${env:ARTIFACT_DIRECTORY_NAME}-windows/
shell: pwsh
- name: "Windows: Pack and upload the artifact"
Expand Down

0 comments on commit 082b334

Please sign in to comment.