diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dd1569b..074b60b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,12 +21,15 @@ jobs: configuration: [Release] include: - os: ubuntu-latest + ATTR: echo Nothing-to-do COMMAND: AM2RLauncher.Gtk -c Release -p:PublishSingleFile=true -p:DebugType=embedded -r ubuntu.18.04-x64 --no-self-contained ARTIFACT: AM2RLauncher/AM2RLauncher.Gtk/bin/Release/net5.0/ubuntu.18.04-x64/publish/ - os: macOS-latest + ATTR: xattr -rd com.apple.quarantine AM2RLauncher/AM2RLauncher.Mac/bin/Release/net6.0/osx-x64/AM2RLauncher.Mac.app/ COMMAND: AM2RLauncher.Mac -c Release -r osx-x64 --no-self-contained ARTIFACT: AM2RLauncher/AM2RLauncher.Mac/bin/Release/net6.0/osx-x64/AM2RLauncher.Mac.app/ - os: windows-latest + ATTR: echo Nothing-to-do COMMAND: AM2RLauncher.Wpf -c Release -r win-x86 -o builds\win86 ARTIFACT: AM2RLauncher\AM2RLauncher.Wpf\bin\Release\net48\win-x86\ runs-on: ${{ matrix.os }} @@ -45,6 +48,8 @@ jobs: working-directory: ./AM2RLauncher run: dotnet publish ${{ matrix.COMMAND }} -c "${{ matrix.configuration }}" # Steps for uploading artifacts. We don't need them currently, so they're commented out. + - name: Set Attributes + run: $ {{ matrix.ATTR }} - name: Zip to Archive run: 7z a -tzip ${{ matrix.os }}.zip ./${{ matrix.ARTIFACT }} - name: Upload Artifacts