Disable signing mac packages

This commit is contained in:
twangboy 2024-10-15 14:05:49 -06:00 committed by Daniel Wozniak
parent 1b680c6f13
commit 061ca0d4d4
6 changed files with 10 additions and 10 deletions

View file

@ -1,5 +1,5 @@
# Do not edit these workflows directly as the changes made will be overwritten.
# Instead, edit the template '.github/workflows/templates/ci.yml.jinja'
# Instead, edit the template '.github\workflows\templates\ci.yml.jinja'
---
name: CI
run-name: "CI (${{ github.event_name == 'pull_request' && format('pr: #{0}', github.event.number) || format('{0}: {1}', startsWith(github.event.ref, 'refs/tags') && 'tag' || 'branch', github.ref_name) }})"

View file

@ -1,5 +1,5 @@
# Do not edit these workflows directly as the changes made will be overwritten.
# Instead, edit the template '.github/workflows/templates/nightly.yml.jinja'
# Instead, edit the template '.github\workflows\templates\nightly.yml.jinja'
---
name: Nightly
@ -514,7 +514,7 @@ jobs:
python-version: "3.10.15"
source: "onedir"
environment: nightly
sign-macos-packages: true
sign-macos-packages: false
sign-windows-packages: false
secrets: inherit
@ -532,7 +532,7 @@ jobs:
python-version: "3.10.15"
source: "src"
environment: nightly
sign-macos-packages: true
sign-macos-packages: false
sign-windows-packages: false
secrets: inherit
build-ci-deps:

View file

@ -1,5 +1,5 @@
# Do not edit these workflows directly as the changes made will be overwritten.
# Instead, edit the template '.github/workflows/templates/release.yml.jinja'
# Instead, edit the template '.github\workflows\templates\release.yml.jinja'
---
name: Release

View file

@ -1,5 +1,5 @@
# Do not edit these workflows directly as the changes made will be overwritten.
# Instead, edit the template '.github/workflows/templates/scheduled.yml.jinja'
# Instead, edit the template '.github\workflows\templates\scheduled.yml.jinja'
---
name: Scheduled

View file

@ -1,5 +1,5 @@
# Do not edit these workflows directly as the changes made will be overwritten.
# Instead, edit the template '.github/workflows/templates/staging.yml.jinja'
# Instead, edit the template '.github\workflows\templates\staging.yml.jinja'
---
name: Stage Release
@ -499,7 +499,7 @@ jobs:
python-version: "3.10.15"
source: "onedir"
environment: staging
sign-macos-packages: true
sign-macos-packages: false
sign-windows-packages: ${{ inputs.sign-windows-packages }}
secrets: inherit
@ -517,7 +517,7 @@ jobs:
python-version: "3.10.15"
source: "src"
environment: staging
sign-macos-packages: true
sign-macos-packages: false
sign-windows-packages: ${{ inputs.sign-windows-packages }}
secrets: inherit
build-ci-deps:

View file

@ -19,7 +19,7 @@
source: "<{ backend }>"
<%- if gh_environment != "ci" %>
environment: <{ gh_environment }>
sign-macos-packages: true
sign-macos-packages: false
sign-windows-packages: <% if gh_environment == 'nightly' -%> false <%- else -%> ${{ inputs.sign-windows-packages }} <%- endif %>
secrets: inherit
<%- endif %>