Skip to content

Commit

Permalink
For macOS builds, skip signing step because we have no usable certifi…
Browse files Browse the repository at this point in the history
…cates for nightly builds, which yields too many error messages in the GHA interface. [ci skip]
  • Loading branch information
marceltaeumel committed Mar 21, 2023
1 parent 669905f commit 262ebf3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/extra.yml
Expand Up @@ -97,6 +97,10 @@ jobs:
shell: bash
run: ./scripts/ci/actions_build.sh

- name: Sign VM (not implemented)
if: false
run: ./deploy/sign-vm.sh

- name: Pack VM
shell: bash
run: ./deploy/pack-vm.sh
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos-arm.yml
Expand Up @@ -80,7 +80,8 @@ jobs:
- name: Build VM
run: ./scripts/ci/actions_build.sh

- name: Sign VM
- name: Sign VM (skip for now)
if: false
continue-on-error: true # Save unsigned build artifacts
run: ./deploy/sign-vm.sh
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos.yml
Expand Up @@ -81,7 +81,8 @@ jobs:
- name: Build VM
run: ./scripts/ci/actions_build.sh

- name: Sign VM
- name: Sign VM (skip for now)
if: false
continue-on-error: true # Save unsigned build artifacts
run: ./deploy/sign-vm.sh
env:
Expand Down

0 comments on commit 262ebf3

Please sign in to comment.