Merge pull request #1049 from JulianGro/disable_master

Cut back on master builds.
This commit is contained in:
Julian Groß 2024-06-29 22:21:40 +02:00 committed by GitHub
commit e80853a58f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 10 deletions

View file

@ -10,8 +10,6 @@ on:
pull_request: pull_request:
types: [opened, synchronize, reopened, labeled] types: [opened, synchronize, reopened, labeled]
push: push:
branches:
- master
tags: tags:
# Release tags. E.g. 2024.06.1 # Release tags. E.g. 2024.06.1
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet

View file

@ -244,14 +244,12 @@ jobs:
working-directory: ${{runner.workspace}}/build working-directory: ${{runner.workspace}}/build
run: cat ./_CPack_Packages/win64/NSIS/NSISOutput.log run: cat ./_CPack_Packages/win64/NSIS/NSISOutput.log
- name: Upload artifact - name: Upload artifact to GitHub
if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS') || matrix.build_type == 'android' # Automatic Linux packaging is not implemented uses: actions/upload-artifact@v4
shell: bash with:
working-directory: ${{runner.workspace}}/build name: ${{ env.ARTIFACT_PATTERN }}
env: path: ./build/${{ env.ARTIFACT_PATTERN }}
AWS_ACCESS_KEY_ID: ${{ secrets.s3_access_key_id }} if-no-files-found: error
AWS_SECRET_ACCESS_KEY: ${{ secrets.s3_secret_access_key }}
run: $PYTHON_EXEC $GITHUB_WORKSPACE/tools/ci-scripts/upload.py
#- name: Archive symbols #- name: Archive symbols
# if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS') # if: startsWith(matrix.os, 'windows') || startsWith(matrix.os, 'macOS')