chore: Change the destination dir #4
Workflow file for this run
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
name: Pull README.md from the ixo-blockchain repository | |
on: | |
push: | |
branches: | |
- develop | |
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 | |
# The data type of the input | |
type: string | |
jobs: | |
pull-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get *.md files from the ixo-blockchain repository | |
run: | | |
curl -O https://raw.githubusercontent.com/ixofoundation/ixo-blocksync/develop/**/*.md | |
- name: Move README.md to destination | |
run: | | |
mv *.md developers/ixo-blockchain |