We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b6fc1d commit f9d600dCopy full SHA for f9d600d
2 files changed
.dockerignore
@@ -0,0 +1,8 @@
1
+**/.git
2
+**/.venv
3
+**/.env
4
+**/.vscode
5
+**/.cache
6
+**/site
7
+**/node_modules
8
+**/dist
.github/workflows/ci.yaml
@@ -7,8 +7,9 @@ on:
env:
9
REGISTRY: ghcr.io
10
- REPO: ${{ github.repository }}
11
IMAGE_NAME: docs-v2
+
12
13
jobs:
14
build:
15
runs-on: ubuntu-latest
@@ -51,7 +52,7 @@ jobs:
51
52
id: meta
53
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
54
with:
- images: ${{ env.REGISTRY }}/${{ env.REPO }}/${{ env.IMAGE_NAME }}
55
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
56
57
# Build and push Docker image with Buildx (don't push on PR)
58
# https://github.com/docker/build-push-action
0 commit comments