-
Notifications
You must be signed in to change notification settings - Fork 10
61 lines (60 loc) · 1.93 KB
/
build.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
name: Build
concurrency:
group: "master-build"
on:
push:
branches:
- main
jobs:
build:
runs-on: fast
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: mkdir build
- name: Download meta 🔧
uses: luet-lab/[email protected]
with:
FINAL_REPO: quay.io/kairos/packages
REPOSITORY_TYPE: docker
downloadAllMeta: true
downloadFromList: false
downloadMeta: true
# renovate: datasource=github-releases depName=mudler/luet
luetVersion: 0.36.0
- name: Build packages 🔧
uses: luet-lab/[email protected]
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
build: true
fromIndex: true
onlyMissing: true
FINAL_REPO: quay.io/kairos/packages
DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
DOCKER_ENDPOINT: quay.io
REPOSITORY_TYPE: docker
pushFinalImages: true
pushCache: true
values: values/amd64.yaml
# renovate: datasource=github-releases depName=mudler/luet
luetVersion: 0.36.0
- name: Create repo 🔧
uses: luet-lab/[email protected]
id: create_repo
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
FINAL_REPO: quay.io/kairos/packages
DOCKER_USERNAME: ${{ secrets.QUAY_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.QUAY_PASSWORD }}
DOCKER_ENDPOINT: quay.io
REPOSITORY_TYPE: docker
createRepo: true
pushCache: true
revisionSHA: true
# renovate: datasource=github-releases depName=mudler/luet
luetVersion: 0.36.0
- name: Summary info
run: |
echo "Repo created at quay.io/kairos/packages:${{ steps.create_repo.outputs.LUET_PUSHED_REPO }}-repository.yaml" >> $GITHUB_STEP_SUMMARY