diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/develop_api.yml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.github/workflows/develop_api.yml b/.github/workflows/develop_api.yml new file mode 100644 index 000000000..53a5b452f --- /dev/null +++ b/.github/workflows/develop_api.yml | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | name: Update Develop API Data | ||
| 2 | |||
| 3 | on: | ||
| 4 | push: | ||
| 5 | branches: | ||
| 6 | - develop | ||
| 7 | paths: | ||
| 8 | - 'keyboards/**' | ||
| 9 | - 'layouts/community/**' | ||
| 10 | |||
| 11 | jobs: | ||
| 12 | api_data: | ||
| 13 | runs-on: ubuntu-latest | ||
| 14 | container: qmkfm/base_container | ||
| 15 | |||
| 16 | # protect against those who work in their fork on develop | ||
| 17 | if: github.repository == 'qmk/qmk_firmware' | ||
| 18 | |||
| 19 | steps: | ||
| 20 | - uses: actions/checkout@v2 | ||
| 21 | with: | ||
| 22 | fetch-depth: 1 | ||
| 23 | persist-credentials: false | ||
| 24 | |||
| 25 | - name: Generate API Data | ||
| 26 | run: qmk generate-api | ||
| 27 | |||
| 28 | - name: Install rsync | ||
| 29 | run: | | ||
| 30 | apt-get update && apt-get install -y rsync | ||
| 31 | |||
| 32 | - name: Upload API Data | ||
| 33 | uses: JamesIves/github-pages-deploy-action@3.7.1 | ||
| 34 | with: | ||
| 35 | ACCESS_TOKEN: ${{ secrets.API_TOKEN_GITHUB }} | ||
| 36 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| 37 | BRANCH: main | ||
| 38 | FOLDER: api_data/v1 | ||
| 39 | CLEAN: true | ||
| 40 | GIT_CONFIG_EMAIL: hello@qmk.fm | ||
| 41 | REPOSITORY_NAME: qmk/qmk_keyboards_devel | ||
| 42 | TARGET_FOLDER: v1 | ||
