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 0b3ef58 commit c8fbf77Copy full SHA for c8fbf77
.github/workflows/re-release.yml
@@ -23,14 +23,10 @@ jobs:
23
- name: Checkout Repository
24
uses: actions/checkout@v4
25
26
- - name: Checkout Code
27
- uses: actions/checkout@v4
28
- with:
29
- ref: ${{ inputs.version_tag }}
30
-
31
- - name: Move one commit back
32
- run:
33
- git reset --hard HEAD~1
+ - name: Checkout Code One Commit Before ${{ inputs.version_tag }}
+ run: |
+ git fetch --prune --unshallow || true
+ git checkout ${{ inputs.version_tag }}~1
34
35
- name: Set up Java
36
uses: actions/setup-java@v4
0 commit comments