2020-10-25 14:48:44 -07:00
|
|
|
name: Update API Data
|
|
|
|
|
2023-02-01 01:42:57 -08:00
|
|
|
#permissions:
|
|
|
|
# contents: read
|
|
|
|
#
|
2022-12-15 19:35:04 -08:00
|
|
|
#on:
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - master
|
|
|
|
# - develop
|
|
|
|
# paths:
|
|
|
|
# - 'keyboards/**'
|
|
|
|
# - 'layouts/community/**'
|
|
|
|
# - 'lib/python/**'
|
|
|
|
# - 'data/**'
|
|
|
|
# - '.github/workflows/api.yml'
|
|
|
|
# workflow_dispatch:
|
2020-10-25 14:48:44 -07:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
api_data:
|
|
|
|
runs-on: ubuntu-latest
|
2023-03-16 18:32:09 -07:00
|
|
|
container: ghcr.io/qmk/qmk_cli
|
2020-10-25 14:48:44 -07:00
|
|
|
|
2022-11-20 18:03:17 -08:00
|
|
|
# protect against those who work in their fork on 'important' branches
|
2020-10-31 15:50:53 -07:00
|
|
|
if: github.repository == 'qmk/qmk_firmware'
|
|
|
|
|
2020-10-25 14:48:44 -07:00
|
|
|
steps:
|
2022-06-28 23:44:54 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-10-25 14:48:44 -07:00
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
persist-credentials: false
|
|
|
|
|
2022-11-20 18:03:17 -08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
pip3 install -r requirements-dev.txt
|
|
|
|
|
2020-10-25 14:48:44 -07:00
|
|
|
- name: Generate API Data
|
2022-11-20 18:03:17 -08:00
|
|
|
run: |
|
|
|
|
qmk generate-api
|
2020-10-25 14:48:44 -07:00
|
|
|
|
|
|
|
- name: Upload API Data
|
2021-03-06 19:18:45 -08:00
|
|
|
uses: jakejarvis/s3-sync-action@master
|
2020-10-25 14:48:44 -07:00
|
|
|
with:
|
2021-03-06 19:18:45 -08:00
|
|
|
args: --acl public-read --follow-symlinks --delete
|
|
|
|
env:
|
2022-11-20 18:03:17 -08:00
|
|
|
AWS_S3_BUCKET: ${{ github.ref == 'refs/heads/develop' && secrets['API_SPACE_DEVELOP'] || secrets['API_SPACE_MASTER'] }}
|
2021-03-06 19:18:45 -08:00
|
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.SPACES_ACCESS_KEY }}
|
|
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET_KEY }}
|
|
|
|
AWS_S3_ENDPOINT: https://nyc3.digitaloceanspaces.com
|
2022-02-27 03:28:51 -08:00
|
|
|
SOURCE_DIR: '.build/api_data'
|