Skip to content

Commit

Permalink
7z
Browse files Browse the repository at this point in the history
  • Loading branch information
jraczek-acc committed Jan 17, 2025
1 parent b05a92a commit e07b961
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ jobs:
path: ./OcarambaLite/bin/Release/OcarambaLite.${{ env.frameworkVersion }}.snupkg
name: OcarambaLiteS${{ env.frameworkVersion }}
- shell: cmd
run: 7z a -mx9 -spf2 "OcarambaBuild.7z" ".\**\bin\**" -xr!*.nupkg -xr!*.snupkg
run: 7z a -mx9 -spf2 "OcarambaBuild.zip" ".\**\bin\**" -xr!*.nupkg -xr!*.snupkg
- uses: actions/upload-artifact@v4
with:
path: OcarambaBuild.7z
path: OcarambaBuild.zip
name: OcarambaBuild
compression-level: 0
if: (${{ job.status }} != 'cancelled')
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
with:
name: OcarambaBuild
- shell: cmd
run: 7z x "OcarambaBuild.7z"
run: 7z x "OcarambaBuild.zip"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions1.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
with:
name: OcarambaBuild
- shell: cmd
run: 7z x "OcarambaBuild.7z"
run: 7z x "OcarambaBuild.zip"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions2.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
Expand All @@ -276,7 +276,7 @@ jobs:
with:
name: OcarambaBuild
- shell: cmd
run: 7z x "OcarambaBuild.7z"
run: 7z x "OcarambaBuild.zip"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions3.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
Expand All @@ -297,7 +297,7 @@ jobs:
with:
name: OcarambaBuild
- shell: cmd
run: 7z x "OcarambaBuild.7z"
run: 7z x "OcarambaBuild.zip"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions4.ps1
env:
MAPPED_ENV_BROWSERSTACKKEY: ${{ secrets.BROWSERSTACKKEY }}
Expand Down Expand Up @@ -325,7 +325,7 @@ jobs:
with:
name: OcarambaBuild
- shell: cmd
run: 7z x "OcarambaBuild.7z"
run: 7z x "OcarambaBuild.zip"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions5.ps1
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/windows@v2
Expand All @@ -346,7 +346,8 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: OcarambaBuild
- run: Expand-Archive -Path OcarambaBuild.zip -DestinationPath ./
- shell: cmd
run: 7z x "OcarambaBuild.zip"
- run: ./scripts/ExecutingTestsOnWindowsGithubActions6.ps1
env:
MAPPED_ENV_BROWSERSTACKKEY: ${{ secrets.BROWSERSTACKKEY }}
Expand Down

0 comments on commit e07b961

Please sign in to comment.