-
Notifications
You must be signed in to change notification settings - Fork 20
68 lines (57 loc) · 1.55 KB
/
build-cosi.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
---
name: COSI Builds
on:
push:
paths:
- "cosi-*"
- ".github/workflows/build-cosi.yaml"
workflow_dispatch:
jobs:
build-cosi:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: quay.io Login
uses: docker/login-action@v2
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Generate Tag based on Date
id: date
run: |
DATE="$(date +%Y-%m-%d)"
echo "tag=${DATE}" >> $GITHUB_OUTPUT
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build s3gw-cosi-sidecar
working-directory: cosi-sidecar
run: |
make build
- name: Build s3gw-cosi-sidecar Container
uses: docker/build-push-action@v3
with:
push: true
tags: |
quay.io/s3gw/s3gw-cosi-sidecar:latest
file: cosi-sidecar/Dockerfile
context: cosi-sidecar
- name: Build s3gw-cosi-driver
working-directory: cosi-driver
run: |
make build
- name: Build s3gw-cosi-driver Container
uses: docker/build-push-action@v3
with:
push: true
build-args: |
S3GW_VERSION=${{ steps.date.outputs.tag }}
tags: |
quay.io/s3gw/s3gw-cosi-driver:latest
file: cosi-driver/Dockerfile
context: cosi-driver