-
Notifications
You must be signed in to change notification settings - Fork 4
58 lines (50 loc) · 1.76 KB
/
update-crds.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
name: update-crds
on:
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-crd
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.23
uses: actions/setup-go@v2
with:
go-version: '1.23'
id: go
- uses: actions/checkout@v1
- name: Install GitHub CLI
run: |
curl -fsSL https://github.com/github/hub/raw/master/script/get | bash -s 2.14.1
sudo mv bin/hub /usr/local/bin
- name: Install crd-importer
run: |
curl -L -o crd-importer https://github.com/kmodules/crd-importer/releases/download/v0.0.1/crd-importer-linux-amd64
chmod +x ./crd-importer
sudo mv ./crd-importer /usr/local/bin/crd-importer
- name: Clone installer repository
env:
GITHUB_USER: 1gtm
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }}
INSTALLER_REPOSITORY: ${{ secrets.INSTALLER_REPOSITORY }}
run: |
url="https://${GITHUB_USER}:${GITHUB_TOKEN}@${INSTALLER_REPOSITORY}.git"
cd $RUNNER_WORKSPACE
git clone $url
cd $(basename $INSTALLER_REPOSITORY)
git config user.name "${GITHUB_USER}"
git config user.email "${GITHUB_USER}@appscode.com"
- name: Update crds
env:
GITHUB_USER: 1gtm
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }}
INSTALLER_REPOSITORY: ${{ secrets.INSTALLER_REPOSITORY }}
run: |
export INSTALLER_ROOT=$RUNNER_WORKSPACE/$(basename $INSTALLER_REPOSITORY)
$INSTALLER_ROOT/hack/scripts/import-crds.sh $(pwd)/crds
$INSTALLER_ROOT/hack/scripts/open-pr.sh