We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cc5fa3 commit 2d111baCopy full SHA for 2d111ba
1 file changed
.github/workflows/release-and-deploy.yml
@@ -32,6 +32,9 @@ on:
32
jobs:
33
build:
34
runs-on: ubuntu-latest
35
+ permissions:
36
+ contents: write
37
+ pull-requests: write
38
39
steps:
40
- name: Check write access to repo
@@ -60,8 +63,20 @@ jobs:
60
63
echo Tag v${{ inputs.release_version }} already exists, release aborted >> $GITHUB_STEP_SUMMARY
61
64
exit 1
62
65
66
+
67
68
# Set up java with maven cache
- - uses: actions/checkout@v6
69
+ - name: Checkout
70
+ uses: actions/checkout@v6
71
+ with:
72
+ token: ${{ secrets.QUDTLIB_BOT_GITHUB_TOKEN }}
73
+ fetch-depth: 0
74
75
+ - name: Fix git authentication headers
76
+ run: |
77
+ git config --global --unset http.https://github.com/.extraheader || true
78
+ git config --local --unset http.https://github.com/.extraheader || true
79
80
- name: Set up JDK 21
81
uses: actions/setup-java@v5
82
with:
0 commit comments