Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
takumi-saito committed Feb 7, 2024
1 parent ef1d3bc commit 2dcbdad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/reg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@ jobs:
uses: gradle/gradle-build-action@87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6 # v2.10.0
with:
gradle-version: wrapper
# - name: workaround for detached HEAD
# run: |
# git checkout ${GITHUB_REF#refs/heads/} || git checkout -b ${GITHUB_REF#refs/heads/} && git pull origin ${GITHUB_REF#refs/heads/}
- name: workaround for detached HEAD
if: ${{ github.event_name == 'pull_request' }}
run: |
git checkout ${GITHUB_REF#refs/heads/} || git checkout -b ${GITHUB_REF#refs/heads/} && git pull origin ${GITHUB_REF#refs/heads/}
git checkout ${GITHUB_HEAD_REF#refs/heads/} || git checkout -b ${GITHUB_HEAD_REF#refs/heads/} && git pull
- name: create the current snapshot
run: |
./gradlew recordRoborazziDebug --stacktrace
Expand Down
File renamed without changes.

0 comments on commit 2dcbdad

Please sign in to comment.