File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 19
19
run : |
20
20
printf '[user]\n\tname = Cockpit Project\n\[email protected] \n' > ~/.gitconfig
21
21
echo '${{ secrets.COCKPITUOUS_TOKEN }}' > ~/.config/github-token
22
- # po-refresh pushes to weblate repo via https://github.com , that needs our cockpituous token
22
+ # po-refresh pushes to weblate repo via https, that needs our cockpituous token
23
23
git config --global credential.helper store
24
24
echo 'https://token:${{ secrets.COCKPITUOUS_TOKEN }}@github.com' >> ~/.git-credentials
25
25
Original file line number Diff line number Diff line change @@ -13,20 +13,20 @@ jobs:
13
13
- name : Set up configuration and secrets
14
14
run : |
15
15
printf '[user]\n\tname = Cockpit Project\n\[email protected] \n' > ~/.gitconfig
16
- # we push to -dist repo via https://github.com , that needs our cockpituous token
16
+ # we push to -dist repo via https, that needs our cockpituous token
17
17
git config --global credential.helper store
18
18
echo 'https://token:${{ secrets.COCKPITUOUS_TOKEN }}@github.com' >> ~/.git-credentials
19
19
20
20
- name : Clone -dist repo
21
21
run : |
22
- git clone https://github.com/ ${{ github.repository }}-dist.git dist-repo
22
+ git clone "${GITHUB_SERVER_URL}/ ${{ github.repository }}-dist.git" dist-repo
23
23
24
24
- name : Delete old tags
25
25
run : |
26
26
set -ex
27
27
28
28
# head commit SHA of default branch
29
- HEAD=$(git ls-remote 'https://github.com/ ${{ github.repository }}' main master | cut -f1 | head -n1)
29
+ HEAD=$(git ls-remote "${GITHUB_SERVER_URL}/ ${{ github.repository }}" main master | cut -f1 | head -n1)
30
30
31
31
cd dist-repo
32
32
now="$(date +%s)"
Original file line number Diff line number Diff line change 22
22
- name : Set up configuration and secrets
23
23
run : |
24
24
printf '[user]\n\tname = Cockpit Project\n\[email protected] \n' > ~/.gitconfig
25
- # we push to -dist repo via https://github.com , that needs our cockpituous token
25
+ # we push to -dist repo via https, that needs our cockpituous token
26
26
git config --global credential.helper store
27
27
echo 'https://token:${{ secrets.COCKPITUOUS_TOKEN }}@github.com' >> ~/.git-credentials
28
28
36
36
tag='sha-${{ github.event.workflow_run.head_sha }}'
37
37
git tag "$tag"
38
38
39
- git push https://github.com/ ${{ github.repository }}-dist.git "$tag"
39
+ git push "${GITHUB_SERVER_URL}/ ${{ github.repository }}-dist.git" "$tag"
Original file line number Diff line number Diff line change 31
31
cd /build
32
32
# Wait for build-dist and publish-dist workflows to complete
33
33
export DOWNLOAD_DIST_OPTIONS=--wait
34
- release-runner -r https:// github.com/$GITHUB_REPOSITORY -t $(basename $GITHUB_REF) ./cockpituous-release
34
+ release-runner -r "${GITHUB_SERVER_URL}/${{ github.repository }}" -t $(basename " $GITHUB_REF" ) ./cockpituous-release
You can’t perform that action at this time.
0 commit comments