feat(ci): copy a docker-hub locked version to a seperate catalog repo for chinese users

This commit is contained in:
kjeld Schouten-Lebbing
2022-03-17 10:25:51 +01:00
parent 551902d97b
commit 4816189ea8
2 changed files with 29 additions and 2 deletions

View File

@@ -28,6 +28,13 @@ jobs:
token: ${{ secrets.BOT_TOKEN }}
path: catalog
- name: Checkout
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # tag=v3
with:
repository: truecharts/dh_catalog
token: ${{ secrets.BOT_TOKEN }}
path: dh_catalog
- name: build-and-run
run: |
tools/build-release.sh -p --config .github/cr.yaml
@@ -50,3 +57,12 @@ jobs:
git add --all
git commit -sm "Commit new App releases for TrueCharts" || exit 0
git push
- name: Commit and Push new Docker-hub-locked App releases
run: |
cd dh_catalog
git config user.name "TrueCharts-Bot"
git config user.email "bot@truecharts.org"
git add --all
git commit -sm "Commit new App releases for TrueCharts" || exit 0
git push