-
Notifications
You must be signed in to change notification settings - Fork 295
40 lines (36 loc) · 1.21 KB
/
update_catalog.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
name: catalog_update
on:
push:
branches:
- 'master'
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
container:
image: ixsystems/catalog_validation:latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Add catalog json as a safe directory
run: |
/bin/bash -c "PWD=${pwd}; git config --global --add safe.directory $PWD"
- name: Publish catalog
run: |
/bin/bash -c "PWD=${pwd}; /usr/local/bin/catalog_update publish --path $PWD"
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Publish new changes in catalog
commit_user_name: sonicaj
commit_user_email: [email protected]
commit_author: sonicaj <[email protected]>
- name: Update catalog
run: |
/bin/bash -c "PWD=${pwd}; /usr/local/bin/catalog_update update --path $PWD"
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update catalog changes
commit_user_name: sonicaj
commit_user_email: [email protected]
commit_author: sonicaj <[email protected]>