File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 10
10
create-release :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
+ - name : Set git credentials
14
+ run : |
15
+ /usr/bin/git config --global --add url."https://${{ secrets.AFRESHY_PAT }}:x-oauth-basic@github".insteadOf ssh://git@github
16
+ /usr/bin/git config --global --add url."https://${{ secrets.AFRESHY_PAT }}:x-oauth-basic@github".insteadOf https://github
17
+ /usr/bin/git config --global --add url."https://${{ secrets.AFRESHY_PAT }}:x-oauth-basic@github".insteadOf git@github
18
+
13
19
- name : Checkout
14
20
uses : actions/checkout@v4
21
+ with :
22
+ token : ${{ secrets.AFRESHY_PAT }}
15
23
16
24
- name : Get latest Firebase release
17
25
id : latest_firebase_release
33
41
echo "::set-output name=branch_exists::false"
34
42
fi
35
43
env :
36
- BRANCH : release/${{ steps.latest_firebase_release.outputs.latest_firebase_release }}
37
-
38
- - name : Set git credentials
39
- run : |
40
- /usr/bin/git config --global --add url."https://${{ secrets.AFRESHY_PAT }}:x-oauth-basic@github".insteadOf ssh://git@github
41
- /usr/bin/git config --global --add url."https://${{ secrets.AFRESHY_PAT }}:x-oauth-basic@github".insteadOf https://github
42
- /usr/bin/git config --global --add url."https://${{ secrets.AFRESHY_PAT }}:x-oauth-basic@github".insteadOf git@github
44
+ BRANCH : release/${{ steps.latest_firebase_release.outputs.latest_firebase_release }}
43
45
44
46
- name : Create release branch
45
47
if : steps.check_branch.outputs.branch_exists == 'false'
You can’t perform that action at this time.
0 commit comments