We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a5341 commit 0652f6dCopy full SHA for 0652f6d
.github/workflows/release.yml
@@ -49,12 +49,14 @@ jobs:
49
if: ${{ github.event_name == 'pull_request' }}
50
run: |
51
echo fetching pull/${{ github.ref_name }}
52
- git fetch origin pull/${{ github.ref_name }}:tmp --depth=1
+ git fetch origin pull/${{ github.ref_name }}:pr --depth=1
53
+ git checkout pr
54
- name: checkout branch
55
if: ${{ github.event_name == 'push' }}
56
57
echo fetching ${{ github.ref_name }}
- git fetch origin ${{ github.ref_name }}:tmp --depth=1
58
+ git fetch origin ${{ github.ref_name }} --depth=1
59
+ git checkout ${{ github.ref_name }}
60
- name: Set up Go
61
uses: actions/setup-go@v5
62
with:
0 commit comments