Skip to content

chore: Change the destination dir #4

chore: Change the destination dir

chore: Change the destination dir #4

Workflow file for this run

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