-
Notifications
You must be signed in to change notification settings - Fork 423
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make code merge-ready (won't trigger build)
- Loading branch information
Showing
1 changed file
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,6 @@ on: | |
default: "Latest Alpha Group" | ||
type: string | ||
|
||
push: | ||
branches: [ graeme/ios-nightly-alphas ] # TODO: Remove this before merging | ||
|
||
jobs: | ||
make-alpha: | ||
runs-on: macos-13 | ||
|
@@ -25,12 +22,12 @@ jobs: | |
INPUT_DESTINATION=${{ github.event.inputs.destination }} | ||
echo "destination=${INPUT_DESTINATION}" >> $GITHUB_OUTPUT | ||
# - name: Assert develop branch TODO: Uncomment before merging | ||
# run: | | ||
# case "${{ github.ref }}" in | ||
# *develop/*) ;; | ||
# *) echo "👎 Not develop branch"; exit 1 ;; | ||
# esac | ||
- name: Assert develop branch TODO: Uncomment before merging | ||
run: | | ||
case "${{ github.ref }}" in | ||
*develop/*) ;; | ||
*) echo "👎 Not develop branch"; exit 1 ;; | ||
esac | ||
- name: Register SSH keys for access to certificates | ||
uses: webfactory/[email protected] | ||
|