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 c532879 commit c2a1e2dCopy full SHA for c2a1e2d
.github/workflows/operator-image.yml
@@ -0,0 +1,30 @@
1
+# This workflow will build the InstaScale dev image and push it to the project-codeflare image registry
2
+
3
+name: InstaScale Dev Image
4
5
+on:
6
+ push:
7
+ branches:
8
+ - main
9
+ paths-ignore:
10
+ - '**.md'
11
+ - 'LICENSE'
12
13
+jobs:
14
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v3
18
19
+ - name: Login to Quay.io
20
+ uses: redhat-actions/podman-login@v1
21
+ with:
22
+ username: ${{ secrets.QUAY_ID }}
23
+ password: ${{ secrets.QUAY_TOKEN }}
24
+ registry: quay.io
25
26
+ - name: Image Build
27
+ run: |
28
+ make build
29
+ make image-build -e IMG=quay.io/project-codeflare/instascale-controller:dev
30
+ make image-push -e IMG=quay.io/project-codeflare/instascale-controller:dev
0 commit comments