We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e906a7 commit 9604b61Copy full SHA for 9604b61
1 file changed
.github/workflows/docker-publish.yml
@@ -6,7 +6,6 @@ on:
6
7
env:
8
REGISTRY: ghcr.io
9
- IMAGE_NAME: ${{ toLower(github.repository) }}
10
11
jobs:
12
build-and-push:
@@ -18,6 +17,10 @@ jobs:
18
17
steps:
19
- name: Checkout repository
20
uses: actions/checkout@v4
+
21
+ - name: downcase IMAGE_NAME
22
+ run: |
23
+ echo "IMAGE_NAME=${GITHUB_REPOSITORY@L}" >> "${GITHUB_ENV}"
24
25
- name: Extract version from pyproject.toml
26
id: version
@@ -51,4 +54,4 @@ jobs:
51
54
org.opencontainers.image.version=${{ steps.version.outputs.version }}
52
55
org.opencontainers.image.source=${{ github.repositoryUrl }}
53
56
org.opencontainers.image.revision=${{ github.sha }}
- org.opencontainers.image.licenses=GNU Lesser General Public License v3.0
57
+ org.opencontainers.image.licenses=LGPL-3.0-or-later
0 commit comments