Skip to content

Commit d446923

Browse files
committed
Revert lowercase conversion for repo
... which was done in #2772 . This is done for testing as building the container doesn't work anymore, see #2810 . Action logs say it was build but it's unclear why it is still based on 3.2rc4 . Hence this test. The schedule was commented out as it would not apply either here as 3.3dev is now the default version.
1 parent a209f92 commit d446923

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

.github/workflows/docker-3.2.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88
# Every week at 8am on Mondays, publish the 3.2 branch:
99
# NOTE: `schedule` event is only triggered for the default branch:
1010
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule
11-
schedule:
12-
- cron: "0 8 * * 1"
11+
# schedule:
12+
# - cron: "0 8 * * 1"
1313

1414
env:
1515
GIT_BRANCH: "3.2"
@@ -18,9 +18,6 @@ jobs:
1818
deploy:
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- name: lowercase the repository name
22-
run: echo "REPO=${GITHUB_REPOSITORY@L}" >> "${GITHUB_ENV}"
23-
2421
- name: Source checkout
2522
uses: actions/checkout@v4
2623

@@ -36,11 +33,11 @@ jobs:
3633
id: docker_meta
3734
uses: docker/metadata-action@v5
3835
with:
39-
images: ${{ env.REPO }}
36+
images: ${{ github.repository }}
4037
labels: |
4138
org.opencontainers.image.version=${{ env.GIT_BRANCH }}
4239
org.opencontainers.image.revision=${{ github.sha }}
43-
org.opencontainers.image.title=${{ env.REPO }}
40+
org.opencontainers.image.title=${{ github.repository }}
4441
4542
- name: GitHub login
4643
if: ${{ github.event_name != 'pull_request' }}
@@ -61,5 +58,5 @@ jobs:
6158
cache-to: type=gha, scope=${{ github.workflow }}
6259
labels: ${{ steps.docker_meta.outputs.labels }}
6360
tags: |
64-
ghcr.io/${{ env.REPO }}:${{ env.GIT_BRANCH }}
65-
ghcr.io/${{ env.REPO }}:latest
61+
ghcr.io/${{ github.repository }}:${{ env.GIT_BRANCH }}
62+
ghcr.io/${{ github.repository }}:latest

0 commit comments

Comments
 (0)