ci: lowercase org name (#1656)
This commit is contained in:
parent
2dcc654b70
commit
83eec6a878
|
@ -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
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in New Issue