Added copy to pages

This commit is contained in:
Hugo Bernier 2022-02-12 19:42:39 -05:00 committed by GitHub
parent c6029c67f1
commit c55087ed60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 25 deletions

View File

@ -14,43 +14,29 @@ name: Merge Sample JSON
# or API. # or API.
on: on:
workflow_dispatch workflow_dispatch
# :
# # Inputs the workflow accepts.
# inputs:
# name:
# # Friendly description to be shown in the UI instead of 'name'
# description: 'Person to greet'
# # Default value if no value is explicitly provided
# default: 'World'
# # Input has to be provided for the workflow to run
# required: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel # A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs: jobs:
# # This workflow contains a single job called "greet"
# greet:
# # The type of runner that the job will run on
# runs-on: ubuntu-latest
# # Steps represent a sequence of tasks that will be executed as part of the job
# steps:
# # Runs a single command using the runners shell
# - name: Send greeting
# run: echo "Hello ${{ github.event.inputs.name }}"
build: build:
name: 'Merge all sample.json' name: 'Merge all sample.json files to samples.json'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Join samples
uses: actions/checkout@v2
with: with:
path: './' path: './'
- run: | - run: |
jq -s '[.[][]]' samples/**/assets/sample.json > samples.json jq -s '[.[][]]' samples/**/assets/sample.json > samples.json
- uses: EndBug/add-and-commit@v6 - name: Commit updated file
uses: EndBug/add-and-commit@v6
with: with:
message: 'Updated samples.json' message: 'Updated samples.json'
add: 'samples.json --force' add: 'samples.json --force'
cwd: './' cwd: './'
token: ${{ secrets.TOKEN }} token: ${{ secrets.TOKEN }}
- name: Copy to the pages
uses: planetoftheweb/copy-to-branches@v1
env:
branches: gh-pages
files: samples.json