We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 997a4af + e7dd4e5 commit 9503170Copy full SHA for 9503170
.github/workflows/build_schema.yaml
@@ -27,17 +27,18 @@ jobs:
27
28
- name: Copy schema to app version path
29
run: |
30
- mkdir schemas/${{ inputs.schema-tag }}
+ mkdir -p schemas/${{ inputs.schema-tag }}
31
cp params-schema.json schemas/${{ inputs.schema-tag }}/
32
33
- name: Commit the schema
34
35
git config user.name "github-actions[bot]"
36
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
37
- cd schemas
38
- git add .
+ pushd schemas
+ git add ${{ inputs.schema-tag }}/params-schema.json
39
git commit -m "adding schema for ${{ inputs.schema-tag }}"
40
git push origin schemas
41
+ popd
42
43
- name: Upload to GitHub Pages
44
uses: actions/upload-pages-artifact@v3
0 commit comments