ci: lowercase org name (#1656)

This commit is contained in:
Jonas L 2022-03-03 12:07:16 +01:00 committed by GitHub
parent 2dcc654b70
commit 83eec6a878
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 8 deletions

View File

@ -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

View File

@ -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 }}