Skip to content

Commit

Permalink
double quotes?
Browse files Browse the repository at this point in the history
  • Loading branch information
NevermindNilas committed Aug 22, 2024
1 parent caed543 commit e64e985
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ jobs:
draft: true

- name: Compress full directory ( Windows - Full )
if: matrix.os == 'windows-latest' && contains(matrix.asset-suffix, "Full")
if: matrix.os == 'windows-latest' && contains(matrix.asset-suffix, '_Full')
run: |
cd ${{ github.workspace }}/dist-full/main/
7z a -t7z -m0=lzma2 -mx=9 -ms=1536m -md=273m ../../TAS_${{ steps.date.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }} *
- name: Compress lite directory ( Windows - Lite )
if: matrix.os == 'windows-latest' && contains(matrix.asset-suffix, "Lite")
if: matrix.os == 'windows-latest' && contains(matrix.asset-suffix, '_Lite')
run: |
cd ${{ github.workspace }}/dist-lite/main/
7z a -t7z -m0=lzma2 -mx=9 -ms=1536m -md=273m ../../TAS_${{ steps.date.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }} *
Expand All @@ -127,4 +127,4 @@ jobs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: TAS_${{ steps.date.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }}
asset_name: TAS_${{ steps.date.outputs.date }}${{ matrix.asset-suffix }}${{ matrix.asset-extension }}
asset_content_type: ${{ matrix.asset-content-type }}
asset_content_type: ${{ matrix.asset-content-type }}

0 comments on commit e64e985

Please sign in to comment.