We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2d423f commit a38485dCopy full SHA for a38485d
.github/workflows/build.yml
@@ -7,7 +7,6 @@ on:
7
workflow_dispatch:
8
9
env:
10
- IMAGE_NAME: ghcr.io/${{ github.repository }}
11
RUNNER_VERSION: 2.327.1
12
13
jobs:
@@ -16,6 +15,9 @@ jobs:
16
15
steps:
17
- uses: actions/checkout@v4
18
+ - name: Normalize image name
19
+ run: echo "IMAGE_NAME=$(echo ghcr.io/${{ github.repository_owner }}/gh-runner | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
20
+
21
- name: Log in to GHCR
22
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
23
0 commit comments