diff options
author | Mary <me@thog.eu> | 2021-03-20 21:48:37 +0100 |
---|---|---|
committer | Mary <me@thog.eu> | 2021-03-20 21:48:37 +0100 |
commit | 0b022cad1e09559bd566cb90caf82ce35943752f (patch) | |
tree | 1983adc3ec81b35be2c5dee08581c80b4ef4c1db | |
parent | 6dc3fedf8cc436013a939689e2ca5e30d004d226 (diff) |
oops for last commit..
-rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 621477de..28e6d01b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,8 +2,7 @@ name: Build job on: push: - # branches: [ master ] - branches: [ ci/artifact-tuning ] + branches: [ master ] paths-ignore: - '.github/*' - '.github/ISSUE_TEMPLATE/**' @@ -61,10 +60,10 @@ jobs: run: dotnet test -c "${{ matrix.configuration }}" - name: Publish run: dotnet publish -c "${{ matrix.configuration }}" -r "${{ matrix.DOTNET_RUNTIME_IDENTIFIER }}" -o ./publish /p:Version="1.0.0" /p:SourceRevisionId="${{ steps.git_short_hash.outputs.result }}" /p:ExtraDefineConstants=DISABLE_UPDATER Ryujinx - #if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request' - name: Upload artifacts uses: actions/upload-artifact@v2 with: name: ryujinx-${{ matrix.configuration }}-1.0.0+${{ steps.git_short_hash.outputs.result }}-${{ matrix.RELEASE_ZIP_OS_NAME }} path: publish - #if: github.event_name == 'pull_request' + if: github.event_name == 'pull_request' |