Skip to content

Commit

Permalink
TEMP [revert before merge]: push builds from PR 37
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeage committed Nov 19, 2024
1 parent a16816a commit a997818
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
else
# This is the first 7 characters of the commit; we do it this way rather than via rev-parse to avoid an 'if' conditional depending on whether it's a PR or push. (unlike git describe, git rev-parse doesn't default to the current HEAD)
STAMP=$(git describe --tags --match "v[0-9]*.[0-9]*" ${{ github.event.pull_request.head.sha }} | cut -d'-' -f3)
PATCH_VERSION=$(git log ${CLOSEST_TAG}..${{ github.event.pull_request.head.sha }} --oneline --first-parent | wc -l)
echo "prerelease=true" >> $GITHUB_OUTPUT
echo "itchchannelname=beta" >> $GITHUB_OUTPUT
echo "fastlanelane=beta" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -643,7 +644,7 @@ jobs:
if: |
github.event_name == 'push' &&
github.repository == 'icosa-foundation/open-blocks' &&
(github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feature/openxr' || contains(github.ref, 'refs/tags/v'))
(github.ref == 'refs/heads/main' || github.ref == 'refs/pull/37/merge' || contains(github.ref, 'refs/tags/v'))
steps:
- name: Download Build Artifacts (Oculus Quest 2+)
Expand Down

0 comments on commit a997818

Please sign in to comment.