summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorseth <[email protected]>2023-11-15 19:24:36 -0500
committerseth <[email protected]>2023-11-15 19:24:36 -0500
commit5e9ec7f008e01d25c0b7f782c5ae043bc9ca0933 (patch)
tree7653bfd9f77d1d2c4fede67124ca7be1a6c4568f /.github/workflows
parent8fee2d4f87232b51c308213e4a1d83f253c75383 (diff)
flake/actions: make docker container name lowercase
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/docker.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml
index c1def5d..3f7d782 100644
--- a/.github/workflows/docker.yaml
+++ b/.github/workflows/docker.yaml
@@ -49,9 +49,12 @@ jobs:
env:
REGISTRY: ghcr.io
USERNAME: getchoo
- IMAGE_NAME: ${{ github.repository }}
steps:
+ - name: set image name
+ run: |
+ echo "IMAGE_NAME=${GITHUB_REPOSITORY,,}" >> "$GITHUB_ENV"
+
- uses: actions/checkout@v4
- name: download images
@@ -59,9 +62,6 @@ jobs:
with:
path: images
- - name: list files
- run: ls -R images/
-
- name: login to registry
uses: docker/login-action@v3
with: