Skip to content

Commit 541f971

Browse files
committed
1 parent 6a638a0 commit 541f971

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/po-refresh.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: |
2020
printf '[user]\n\tname = Cockpit Project\n\[email protected]\n' > ~/.gitconfig
2121
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
2323
git config --global credential.helper store
2424
echo 'https://token:${{ secrets.COCKPITUOUS_TOKEN }}@github.com' >> ~/.git-credentials
2525

.github/workflows/prune-dist.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313
- name: Set up configuration and secrets
1414
run: |
1515
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
1717
git config --global credential.helper store
1818
echo 'https://token:${{ secrets.COCKPITUOUS_TOKEN }}@github.com' >> ~/.git-credentials
1919
2020
- name: Clone -dist repo
2121
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
2323
2424
- name: Delete old tags
2525
run: |
2626
set -ex
2727
2828
# 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)
3030
3131
cd dist-repo
3232
now="$(date +%s)"

.github/workflows/publish-dist.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up configuration and secrets
2323
run: |
2424
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
2626
git config --global credential.helper store
2727
echo 'https://token:${{ secrets.COCKPITUOUS_TOKEN }}@github.com' >> ~/.git-credentials
2828
@@ -36,4 +36,4 @@ jobs:
3636
tag='sha-${{ github.event.workflow_run.head_sha }}'
3737
git tag "$tag"
3838
39-
git push https://github.com/${{ github.repository }}-dist.git "$tag"
39+
git push "${GITHUB_SERVER_URL}/${{ github.repository }}-dist.git" "$tag"

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
cd /build
3232
# Wait for build-dist and publish-dist workflows to complete
3333
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

0 commit comments

Comments
 (0)