Update docker-publish.yml
This commit is contained in:
parent
13762470b0
commit
368df65337
|
@ -12,7 +12,7 @@ on:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# This should allow creation of docker images even in forked repositories
|
# This should allow creation of docker images even in forked repositories
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
REPO: ${{ github.repository }}
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -20,6 +20,11 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
## Workaround for GitHub repo names containing uppercase characters
|
||||||
|
- name: set lowercase repo name
|
||||||
|
run: |
|
||||||
|
echo "IMAGE_NAME=${REPO,,}" >>${GITHUB_ENV}
|
||||||
|
|
||||||
# Using the following workaround because currently GitHub Actions
|
# Using the following workaround because currently GitHub Actions
|
||||||
# does not support logical AND/OR operations on triggers
|
# does not support logical AND/OR operations on triggers
|
||||||
# It's currently not possible to have `branches` under the `schedule` trigger
|
# It's currently not possible to have `branches` under the `schedule` trigger
|
||||||
|
|
Loading…
Reference in New Issue