-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (67 loc) · 2.14 KB
/
build-deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: rainbow build-and deploy
on:
pull_request: []
release:
types: [published]
push:
branches:
- main
# Note that:
# rainbow:flux is the same, but has flux (and considered a client container)
# rainbow:latest doesn't have flux (for the scheduler)
# both have the rainbow / rainbow-scheduler build, it's just one has flux ;)
jobs:
build-rainbow:
permissions:
packages: write
env:
container: ghcr.io/converged-computing/rainbow-flux
runs-on: ubuntu-latest
name: build rainbow (client)
steps:
- uses: actions/checkout@v4
- name: Build Containers
run: make docker-flux
- name: Tag Release Image
if: (github.event_name == 'release')
run: |
tag=${GITHUB_REF#refs/tags/}
echo "Tagging and releasing ${{ env.container}}:${tag}"
docker tag ${{ env.container }}:latest ${{ env.container }}:${tag}
- name: GHCR Login
if: (github.event_name != 'pull_request')
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy Container
if: (github.event_name != 'pull_request')
run: docker push ${{ env.container }} --all-tags
build-rainbow-scheduler:
permissions:
packages: write
env:
container: ghcr.io/converged-computing/rainbow-scheduler
runs-on: ubuntu-latest
name: build rainbow (scheduler)
steps:
- uses: actions/checkout@v4
- name: Build Containers
run: make docker-ubuntu
- name: Tag Release Image
if: (github.event_name == 'release')
run: |
tag=${GITHUB_REF#refs/tags/}
echo "Tagging and releasing ${{ env.container}}:${tag}"
docker tag ${{ env.container }}:latest ${{ env.container }}:${tag}
- name: GHCR Login
if: (github.event_name != 'pull_request')
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy Container
if: (github.event_name != 'pull_request')
run: docker push ${{ env.container }} --all-tags