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