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 3c8e51d commit 12efe85Copy full SHA for 12efe85
.github/workflows/build-push-image.yml
@@ -0,0 +1,21 @@
1
+name: Publish Docker image
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
+ push_to_registry:
7
+ name: Push Docker image to GitHub Packages
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Check out the repo
11
+ uses: actions/checkout@v2
12
+ - name: Unpack binaries
13
+ run: "make k8s-binaries"
14
+ - name: Push to GitHub Packages
15
+ uses: docker/build-push-action@v1
16
+ with:
17
+ username: ${{ github.actor }}
18
+ password: ${{ secrets.GITHUB_TOKEN }}
19
+ registry: ghcr.io
20
+ repository: stackhpc/hyperkube
21
+ tag_with_ref: true
0 commit comments