From 83eec6a87866f45ce971f1c29ab7c686d8e4fe5e Mon Sep 17 00:00:00 2001 From: Jonas L Date: Thu, 3 Mar 2022 12:07:16 +0100 Subject: [PATCH] ci: lowercase org name (#1656) --- .github/workflows/housekeeping.yml | 4 ++-- .github/workflows/tools.yml | 8 ++------ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/housekeeping.yml b/.github/workflows/housekeeping.yml index f6ee6dfd3..d43715306 100644 --- a/.github/workflows/housekeeping.yml +++ b/.github/workflows/housekeeping.yml @@ -12,7 +12,7 @@ on: jobs: find_closed_references: - if: github.repository_owner == 'LibreTime' + if: github.repository_owner == 'libretime' name: Find closed references runs-on: ubuntu-latest @@ -30,7 +30,7 @@ jobs: ignore: .git,/docs/releases/* find_broken_links: - if: github.repository_owner == 'LibreTime' + if: github.repository_owner == 'libretime' name: Find broken links runs-on: ubuntu-latest diff --git a/.github/workflows/tools.yml b/.github/workflows/tools.yml index 75852f5db..2d0ce33e7 100644 --- a/.github/workflows/tools.yml +++ b/.github/workflows/tools.yml @@ -26,12 +26,8 @@ jobs: env: REGISTRY: ghcr.io - IMAGE_ORG: libretime IMAGE_NAME: libretime-dev - # See https://github.com/LibreTime/libretime/issues/1216 - # See https://github.com/LibreTime/libretime/actions/runs/1190504235 - if: ${{ github.repository_owner == 'LibreTime' }} steps: - name: Checkout uses: actions/checkout@v2 @@ -89,5 +85,5 @@ jobs: uses: docker/build-push-action@v2 with: context: . - push: true - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_ORG }}/${{ env.IMAGE_NAME }}:${{ matrix.release }} + push: ${{ github.repository_owner == 'libretime' }} + tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ matrix.release }}