ci: lowercase org name (#1656)
This commit is contained in:
parent
2dcc654b70
commit
83eec6a878
|
@ -12,7 +12,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
find_closed_references:
|
find_closed_references:
|
||||||
if: github.repository_owner == 'LibreTime'
|
if: github.repository_owner == 'libretime'
|
||||||
name: Find closed references
|
name: Find closed references
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -30,7 +30,7 @@ jobs:
|
||||||
ignore: .git,/docs/releases/*
|
ignore: .git,/docs/releases/*
|
||||||
|
|
||||||
find_broken_links:
|
find_broken_links:
|
||||||
if: github.repository_owner == 'LibreTime'
|
if: github.repository_owner == 'libretime'
|
||||||
name: Find broken links
|
name: Find broken links
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -26,12 +26,8 @@ jobs:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_ORG: libretime
|
|
||||||
IMAGE_NAME: libretime-dev
|
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:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -89,5 +85,5 @@ jobs:
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: ${{ github.repository_owner == 'libretime' }}
|
||||||
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_ORG }}/${{ env.IMAGE_NAME }}:${{ matrix.release }}
|
tags: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ matrix.release }}
|
||||||
|
|
Loading…
Reference in New Issue