Merge pull request #82 from rux616:feat/environment-updates #34
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: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
renderjson: | |
name: Render JSON | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repo | |
# https://github.com/marketplace/actions/checkout | |
uses: actions/checkout@v2 | |
- name: Install Jsonnet | |
run: sudo apt-get install -y jsonnet | |
- name: Render JSON | |
run: .github/scripts/render_json.sh ./jsonnet ./json | |
- name: Commit Rendered JSON | |
# https://github.com/marketplace/actions/git-auto-commit | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "[AUTO] Render JSON" |