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 32b4c3d commit 05a0526Copy full SHA for 05a0526
.github/workflows/deploy.yaml
@@ -15,6 +15,11 @@ jobs:
15
deploy:
16
name: Build, push, & deploy
17
runs-on: ubuntu-latest
18
+ servicess:
19
+ registry:
20
+ image: registry:2
21
+ ports:
22
+ - 5000:5000
23
24
steps:
25
- name: Download image artifact
@@ -59,6 +64,7 @@ jobs:
59
64
tags: |
60
65
ghcr.io/python-discord/snekbox:latest
61
66
ghcr.io/python-discord/snekbox:${{ inputs.version }}
67
+ localhost:5000/local/snekbox:${{ inputs.version }}
62
68
63
69
- name: Build PyDis final image
70
uses: docker/build-push-action@v6
@@ -68,6 +74,7 @@ jobs:
74
push: true
75
cache-from: |
76
ghcr.io/python-discord/snekbox:latest-pydis
77
+ build-args: SNEKBOX_IMAGE=localhost:5000/local/snekbox:${{ inputs.version }}
71
78
cache-to: type=inline
72
79
73
80
0 commit comments