-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (50 loc) · 1.76 KB
/
update-local-repo.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
name: update-local-repo
on:
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Prepare Host
run: |
# install helm
curl -LO https://github.com/kubepack/helm/releases/download/ac-1.21.0/helm
chmod +x ./helm
sudo mv ./helm /usr/local/bin/helm
# install yq
curl -fsSL -o yqq https://github.com/mikefarah/yq/releases/download/3.3.0/yq_linux_amd64
chmod +x yqq
sudo mv yqq /usr/local/bin/yqq
pipx install yq
- name: Install uibuilder-tools
run: |
curl -fsSL -o uibuilder-tools https://github.com/kmodules/uibuilder-tools/releases/download/v0.0.1/uibuilder-tools-linux-amd64
chmod +x uibuilder-tools
sudo mv ./uibuilder-tools /usr/local/bin/uibuilder-tools
- 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: Prepare git
env:
GITHUB_USER: 1gtm
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }}
run: |
echo $GITHUB_SERVER_URL
git config user.name "${GITHUB_USER}"
git config user.email "${GITHUB_USER}@appscode.com"
git remote set-url origin "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
git remote -v
- name: Update Local Helm repo
env:
GITHUB_USER: 1gtm
GITHUB_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }}
run: |
./hack/scripts/trigger.sh