This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
Meshery OSM Pattern Components Generator #742
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Meshery OSM Pattern Components Generator | |
on: | |
push: | |
branches: | |
- 'master' | |
paths-ignore: | |
- 'docs/**' | |
- '.github/**' | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
GenerateComponents: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
token: ${{ secrets.GH_ACCESS_TOKEN }} | |
ref: "master" | |
- name: Setup Go | |
uses: actions/setup-go@master | |
with: | |
go-version: 1.19 | |
- name: Run adapter to create components | |
run: | | |
touch log.txt | |
mkdir -p ~/.meshery/bin | |
(FORCE_DYNAMIC_REG=true DEBUG=true go run main.go > log.txt 2>&1) & | |
end=$((SECONDS+300)) | |
while [ $SECONDS -lt $end ]; do | |
if [ "$(cat log.txt | grep "Component Creation completed for version")" != "" ];then | |
echo "New components created" | |
break | |
fi | |
done | |
rm log.txt | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
file_pattern: templates/ | |
commit_user_name: l5io | |
commit_user_email: [email protected] | |
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
commit_options: "--signoff" | |
commit_message: "[Patterns] Pattern components generated from latest OSM manifests" | |
branch: master |