-
Notifications
You must be signed in to change notification settings - Fork 23
81 lines (67 loc) · 2.43 KB
/
update_metadata.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
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Publish Package
on:
push:
branches:
- main
paths:
- "**.mod"
env:
KPM_REG: "docker.io"
KPM_REPO: "kcllang"
jobs:
publish_pkg:
# NOTE:
# - This is limited to pull_request* events and would raise an error for other events.
# - A maximum of 3000 files can be returned.
# - For more flexibility and no limitations see "Using local .git history" above.
runs-on: ubuntu-latest
name: Update Package Info on AH
steps:
- name: Install kcl
run: wget -q https://kcl-lang.io/script/install-cli.sh -O - | /bin/bash
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Login
run: kcl registry login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} docker.io
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
- name: Publish to docker.io
run: |
if echo "${{ steps.changed-files.outputs.all_changed_files }}" | grep -q 'kcl.mod'; then
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
./scripts/push_pkg_from.sh $file
done
fi
- name: Publish to ghcr.io
run: |
kcl registry login -u ${{ secrets.DEPLOY_ACCESS_NAME }} -p ${{ secrets.DEPLOY_ACCESS_TOKEN }} ghcr.io
if echo "${{ steps.changed-files.outputs.all_changed_files }}" | grep -q 'kcl.mod'; then
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
./scripts/push_pkg_from.sh $file
done
fi
env:
KPM_REG: "ghcr.io"
KPM_REPO: "kcl-lang"
- name: Update artifacthub-pkg.yaml
run: |
if echo "${{ steps.changed-files.outputs.all_changed_files }}" | grep -q 'kcl.mod'; then
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
go run main.go $file
done
fi
- name: Commit and push changes
run: |
if echo "${{ steps.changed-files.outputs.all_changed_files }}" | grep -q 'kcl.mod'; then
git config --global user.name 'GitHub Action'
git config --global user.email 'action@github.com'
git add .
git commit -m "chore: update artifacthub-pkg.yaml"
git push
fi