forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework generate-api CLI command to use .build directory (qmk#16441)
- Loading branch information
Showing
6 changed files
with
98 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Update API Data | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'keyboards/**' | ||
- 'layouts/community/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
api_data: | ||
runs-on: ubuntu-latest | ||
container: qmkfm/qmk_cli | ||
|
||
# protect against those who develop with their fork on master | ||
if: github.repository == 'qmk/qmk_firmware' | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
persist-credentials: false | ||
|
||
- name: Generate API Data | ||
run: qmk generate-api | ||
|
||
- name: Upload API Data | ||
uses: jakejarvis/s3-sync-action@master | ||
with: | ||
args: --acl public-read --follow-symlinks --delete | ||
env: | ||
AWS_S3_BUCKET: ${{ secrets.API_SPACE_MASTER }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.SPACES_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET_KEY }} | ||
AWS_S3_ENDPOINT: https://nyc3.digitaloceanspaces.com | ||
SOURCE_DIR: '.build/api_data' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Update Develop API Data | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
paths: | ||
- 'keyboards/**' | ||
- 'layouts/community/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
api_data: | ||
runs-on: ubuntu-latest | ||
container: qmkfm/qmk_cli | ||
|
||
# protect against those who work in their fork on develop | ||
if: github.repository == 'qmk/qmk_firmware' | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 1 | ||
persist-credentials: false | ||
|
||
- name: Generate API Data | ||
run: qmk generate-api | ||
|
||
- name: Upload API Data | ||
uses: jakejarvis/s3-sync-action@master | ||
with: | ||
args: --acl public-read --follow-symlinks --delete | ||
env: | ||
AWS_S3_BUCKET: ${{ secrets.API_SPACE_DEVELOP }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.SPACES_ACCESS_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.SPACES_SECRET_KEY }} | ||
AWS_S3_ENDPOINT: https://nyc3.digitaloceanspaces.com | ||
SOURCE_DIR: '.build/api_data' |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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
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