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 cdd51e9 commit f723322Copy full SHA for f723322
.github/workflows/publish-ghcr.yaml
@@ -0,0 +1,19 @@
1
+name: QuickDraw Docker Images for GitHub Container Registry
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build_and_publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v3
14
+ run: |
15
+ docker login -u ilanaliouchouche -p ${{ secrets.GHCR_TOKEN }} ghcr.io
16
+ docker build -t ghcr.io/mlengineershub/quickdraw:latest .
17
+ docker build -t ghcr.io/mlengineershub/quickdraw-endpoints:latest -f endpoints/Dockerfile .
18
+ docker push ghcr.io/mlengineershub/quickdraw:latest
19
+ docker push ghcr.io/mlengineershub/quickdraw-endpoints:latest
0 commit comments