-
Notifications
You must be signed in to change notification settings - Fork 3
68 lines (57 loc) · 1.56 KB
/
lam.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: Local artifact mirror
on:
pull_request:
paths:
- 'sdk/**'
- 'lam/**'
push:
tags:
- "lam/*.*.*"
permissions:
contents: write
jobs:
build-image:
name: Build image
runs-on: ubuntu-latest
defaults:
run:
working-directory: lam
env:
LOCAL_ARTIFACT_MIRROR_IMAGE: replicated/embedded-cluster-local-artifact-mirror
REGISTRY: docker.io
USERNAME: ${{ secrets.DOCKERHUB_USER }}
PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache Melange
uses: actions/cache@v4
with:
path: |
build/.melange-cache
key: melange-cache
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: lam/go.mod
- name: Setup Docker
uses: docker/setup-buildx-action@v3
- name: Setup Melange
uses: chainguard-dev/actions/setup-melange@main
- name: Build local-artifact-mirror binary
run: make bin/local-artifact-mirror
- name: Build local-artifact-mirror package
run: make build-local-artifact-mirror-package
- name: Bundle repo
if: startsWith(github.ref, 'refs/tags/')
run: |
cd build
tar -czvf repo.tar.gz packages
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
bin/local-artifact-mirror-*-*
build/melange.rsa.pub
build/repo.tar.gz