Skip to content

Commit

Permalink
💚 Fix image name
Browse files Browse the repository at this point in the history
  • Loading branch information
844196 committed Oct 14, 2023
1 parent fbfcda1 commit 6184f18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: docker/metadata-action@v5
id: meta
with:
images: ${{ github.repository }}-base
images: ghcr.io/${{ github.repository }}-base
tags: |
type=semver,pattern={{version}},value=${{ inputs.qmk_version }}
type=sha
Expand Down
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@ RUN \

RUN install -o nonroot -g nonroot -d /code/

ENV QMK_HOME=/home/nonroot/qmk_firmware
USER nonroot
WORKDIR /code

# --------------------------------------------------------------------------------

FROM base

ENV QMK_HOME=/home/nonroot/qmk_firmware

ARG QMK_REPOSITORY=qmk/qmk_firmware
ARG QMK_VERSION=master

RUN qmk setup --yes --home ${QMK_HOME} "${QMK_REPOSITORY}" --branch "${QMK_VERSION}"
RUN qmk setup --yes --home "${QMK_HOME}" "${QMK_REPOSITORY}" --branch "${QMK_VERSION}"

0 comments on commit 6184f18

Please sign in to comment.