cleaned up workflow

This commit is contained in:
Hugo Bernier 2022-02-12 19:11:58 -05:00 committed by GitHub
parent 55b0474450
commit 8cf2fb843b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 7 deletions

View File

@ -39,21 +39,19 @@ jobs:
# run: echo "Hello ${{ github.event.inputs.name }}"
build:
name: Example
name: Merge
description: 'Merge all sample.json'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: './'
- run: |
echo "Merging samples"
find samples/ -name 'sample.json' -path '*/assets/*' -o -name "test*.json" | xargs cat > ./test-samples.json
jq -s '[.[][]]' samples/**/assets/sample.json > test-samplesjq.json
echo "Merged samples"
jq -s '[.[][]]' samples/**/assets/sample.json > samples.json
- uses: EndBug/add-and-commit@v6
with:
message: 'Add the version and date'
add: '*.json --force'
message: 'Updated samples.json'
add: 'samples.json --force'
cwd: './'
token: ${{ secrets.TOKEN }}