Update Font List #15
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: Update Font List | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
fetch_fonts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Fetch Fonts | |
run: | | |
scripts/get_fonts_list.py | |
env: | |
API_KEY: ${{ secrets.MINIMAL_VUE_SNT_KEY }} | |
- name: Check if File Changed | |
id: check_file_changed | |
run: | | |
if git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep 'fontsv2.json'; then | |
echo "File has changed." | |
echo "::set-output name=file_changed::true" | |
else | |
echo "File has not changed." | |
echo "::set-output name=file_changed::false" | |
fi | |
- name: Update Version in Manifest | |
if: steps.check_file_changed.outputs.file_changed == 'true' | |
run: | | |
scripts/increment_minor_version.py | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
ssh-key: ${{secrets.GA1_GITHUB_ACTIONS_SSH_KEY}} |