We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9105db3 commit e284be0Copy full SHA for e284be0
.github/workflows/ci-builder.yaml
@@ -0,0 +1,22 @@
1
+name: Klipper Container Build and Push
2
+
3
+on: workflow_dispatch
4
5
+jobs:
6
+ login:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v3
11
12
+ - name: Login to Docker Hub
13
+ uses: docker/login-action@v2
14
+ with:
15
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
16
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
17
18
+ - name: Build
19
+ run: docker build -f scripts/Dockerfile-build -t ${{ secrets.DOCKERHUB_USERNAME }}/klipper-build:latest .
20
21
+ - name: Push
22
+ run: docker push ${{ secrets.DOCKERHUB_USERNAME }}/klipper-build:latest
0 commit comments