[openwrt/openwrt] CI: Add workaround for github uppercase usernames
LEDE Commits
lede-commits at lists.infradead.org
Sun Dec 4 08:37:31 PST 2022
ansuel pushed a commit to openwrt/openwrt.git, branch openwrt-22.03:
https://git.openwrt.org/c2df98c49c463f5913299040f1c91d56ecda3010
commit c2df98c49c463f5913299040f1c91d56ecda3010
Author: Edward Chow <equu at openmail.cc>
AuthorDate: Mon Oct 3 19:39:58 2022 +0800
CI: Add workaround for github uppercase usernames
The workflow defined in tools.yml and kernel.yml used to fail on
forked repositories of contributers whose github username contains
uppercase letters.
A workaround mentioned in
https://github.com/orgs/community/discussions/27086 and
https://stackoverflow.com/questions/70326569/ is applied.
Signed-off-by: Edward Chow <equu at openmail.cc>
(cherry picked from commit c27b43956407f3adc3cc2693792acd6b40a01877)
---
.github/workflows/kernel.yml | 10 +++++++++-
.github/workflows/tools.yml | 8 +++++++-
2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml
index c4553aaa4e..c04e240192 100644
--- a/.github/workflows/kernel.yml
+++ b/.github/workflows/kernel.yml
@@ -13,11 +13,19 @@ jobs:
runs-on: ubuntu-latest
outputs:
target: ${{ steps.find_targets.outputs.target }}
+ owner_lc: ${{ steps.lower_owner.outputs.owner_lc }}
steps:
- name: Checkout
uses: actions/checkout at v2
+ - name: Set lower case owner name
+ id: lower_owner
+ run: |
+ OWNER_LC=$(echo "${{ github.repository_owner }}" \
+ | tr '[:upper:]' '[:lower:]')
+ echo "::set-output name=owner_lc::$OWNER_LC"
+
- name: Set targets
id: find_targets
run: |
@@ -49,7 +57,7 @@ jobs:
matrix:
target: ${{fromJson(needs.determine_targets.outputs.target)}}
- container: ghcr.io/${{ github.repository_owner }}/tools:latest
+ container: ghcr.io/${{ needs.determine_targets.outputs.owner_lc }}/tools:latest
permissions:
contents: read
diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml
index 54b7a01fe5..573bb468b9 100644
--- a/.github/workflows/tools.yml
+++ b/.github/workflows/tools.yml
@@ -167,6 +167,12 @@ jobs:
packages: write
steps:
+ - name: Set lower case owner name
+ env:
+ OWNER: ${{ github.repository_owner }}
+ run: |
+ echo "OWNER_LC=${OWNER,,}" >> "$GITHUB_ENV"
+
- name: Checkout
uses: actions/checkout at v2
with:
@@ -190,5 +196,5 @@ jobs:
with:
context: openwrt
push: true
- tags: ghcr.io/${{ github.repository_owner }}/tools:latest
+ tags: ghcr.io/${{ env.OWNER_LC }}/tools:latest
file: openwrt/.github/workflows/Dockerfile.tools
More information about the lede-commits
mailing list