-
Notifications
You must be signed in to change notification settings - Fork 30
80 lines (77 loc) · 2.57 KB
/
release.yml
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
77
78
79
80
name: release
on:
push:
tags:
- "v*.*.*"
env:
TAG: ${{ github.ref_name }}
GHCR_REGISTRY: ghcr.io
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
actions: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setupGo
uses: actions/setup-go@v5
with:
go-version: '=1.21.8'
- name: Docker login ghcr.io
uses: docker/login-action@v3
with:
registry: ${{ env.GHCR_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker image for ghcr.io
run: make docker-build-all TAG=${{ env.TAG }}
- name: Push docker image to ghcr.io
run: make docker-push-all TAG=${{ env.TAG }} PROD_REGISTRY=${{ env.GHCR_REGISTRY }}
- name: Read prime registry secrets
uses: rancher-eio/read-vault-secrets@main
with:
secrets: |
secret/data/github/repo/${{ github.repository }}/rancher-prime-registry/credentials username | PRIME-REGISTRY-USERNAME;
secret/data/github/repo/${{ github.repository }}/rancher-prime-registry/credentials password | PRIME-REGISTRY-PASSWORD;
secret/data/github/repo/${{ github.repository }}/rancher-prime-registry/credentials registry | PRIME-REGISTRY-REGISTRY;
- name: Docker login to prime registry
uses: docker/login-action@v3
with:
registry: ${{ env.PRIME-REGISTRY-REGISTRY }}
username: ${{ env.PRIME-REGISTRY-USERNAME }}
password: ${{ env.PRIME-REGISTRY-PASSWORD }}
- name: Build docker image for prime registry
run: make docker-build-all TAG=${{ env.TAG }}
- name: Push docker image to prime registry
run: make docker-push-all TAG=${{ env.TAG }} PROD_REGISTRY=${{ env.PRIME-REGISTRY-REGISTRY }}
release:
runs-on: ubuntu-latest
permissions:
contents: write
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setupGo
uses: actions/setup-go@v5
with:
go-version: '=1.21.8'
- name: Update manifests
run: |
make release RELEASE_TAG=${{ env.TAG }}
- name: Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create ${{ env.TAG }} --draft --generate-notes
gh release upload ${{ env.TAG }} out/metadata.yaml
gh release upload ${{ env.TAG }} out/bootstrap-components.yaml
gh release upload ${{ env.TAG }} out/control-plane-components.yaml