Skip to content

Commit c2a1e2d

Browse files
sutaakaropenshift-merge-robot
authored andcommitted
Build and publish dev InstaScale image for every commit
1 parent c532879 commit c2a1e2d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
push:
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

Comments
 (0)