Auto update Coinection seed #5
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: Update Coinection Seed | |
on: | |
pull_request: | |
branches: ["main"] | |
workflow_dispatch: | |
jobs: | |
update-seed: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Open Coin Data | |
uses: actions/checkout@v4 | |
with: | |
repository: coinection/open-coin-data | |
path: ocd | |
- name: Checkout Data Converter | |
uses: actions/checkout@v4 | |
with: | |
repository: coinection/data-converter | |
path: data-converter | |
token: ${{ secrets.ACCESS_TOKEN }} | |
- name: Print repository content | |
run: | | |
ls -la / | |
- name: Run Data Converter | |
run: | | |
cd /data-converter | |
npm install | |
npm run start "./ocd" | |
- name: Print folder content | |
run: | | |
ls -la /ocd | |