Github: Disable release upload jobs

This commit is contained in:
Jonathan G Rennison
2021-03-02 23:43:16 +00:00
parent 7e62af94ee
commit 26dcd0734e

View File

@@ -833,7 +833,7 @@ jobs:
# "always()" is important here, it is the keyword to use to stop skipping # "always()" is important here, it is the keyword to use to stop skipping
# this job if any dependency is skipped. It looks a bit silly, but it is # this job if any dependency is skipped. It looks a bit silly, but it is
# how GitHub Actions work ;) # how GitHub Actions work ;)
if: always() && needs.source.result == 'success' && needs.docs.result == 'success' && needs.linux.result == 'success' && (needs.linux-distro.result == 'success' || needs.linux-distro.result == 'skipped') && needs.macos.result == 'success' && needs.windows.result == 'success' if: ${{ false }} # always() && needs.source.result == 'success' && needs.docs.result == 'success' && needs.linux.result == 'success' && (needs.linux-distro.result == 'success' || needs.linux-distro.result == 'skipped') && needs.macos.result == 'success' && needs.windows.result == 'success'
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
@@ -886,7 +886,7 @@ jobs:
- macos - macos
- windows - windows
if: needs.source.outputs.trigger_type == 'new-master' || needs.source.outputs.trigger_type == 'new-tag' if: ${{ false }} # needs.source.outputs.trigger_type == 'new-master' || needs.source.outputs.trigger_type == 'new-tag'
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04