Skip to content

Commit

Permalink
using zip and not 7z format
Browse files Browse the repository at this point in the history
  • Loading branch information
bam241 committed Aug 30, 2021
1 parent 0826479 commit dbd5f6f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,22 +192,22 @@ jobs:
cp ../../plugin_install/bin/* ./
cp ../../plugin_install/lib/* ./
cd ${PLUGIN_ABS_PATH}
7z a C:/Users/runneradmin/svalinn_plugin_windows_${{ matrix.cubit }}.7z bin\
7z -tzip a C:/Users/runneradmin/svalinn_plugin_windows_${{ matrix.cubit }}.zip bin\
- if: github.event_name != 'release'
name: Upload artifact for CI
uses: actions/upload-artifact@v2
with:
name: svalinn-plugin_windows_${{ matrix.cubit }}.7z
path: C:/Users/runneradmin/svalinn_plugin_windows_${{ matrix.cubit }}.7z
name: svalinn-plugin_windows_${{ matrix.cubit }}.zip
path: C:/Users/runneradmin/svalinn_plugin_windows_${{ matrix.cubit }}.zip
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`

- if: github.event_name == 'release'
name: Upload binaries into the release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: C:/Users/runneradmin/svalinn_plugin_windows_${{ matrix.cubit }}.7z
asset_name: svalinn_plugin_windows_${{ matrix.cubit }}.7z
file: C:/Users/runneradmin/svalinn_plugin_windows_${{ matrix.cubit }}.zip
asset_name: svalinn_plugin_windows_${{ matrix.cubit }}.zip
tag: ${{ github.ref }}

0 comments on commit dbd5f6f

Please sign in to comment.