fix: support gnosis #17
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: Ipfs uploader | |
# Uploads all changed md files to ipfs once merged to main | |
# Comments the pr | |
concurrency: | |
group: ${{ github.workflow }} | |
# cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
ipfs-upload: | |
runs-on: ubuntu-latest | |
name: Ipfs uploader | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Get all changed *.md file(s) | |
id: changed-files | |
uses: tj-actions/changed-files@f569b77fb1d9ad9f1a125757d7e9e07b1f320199 | |
with: | |
json: true | |
write_output_files: true | |
files: | | |
src/**/*.md | |
- name: Run step if any *.md file(s) change | |
if: steps.changed-files.outputs.any_changed == 'true' | |
run: | | |
cat .github/outputs/all_changed_files.json | |
- name: Upload | |
if: steps.changed-files.outputs.any_changed == 'true' | |
env: | |
PINATA_KEY: ${{ secrets.PINATA_KEY }} | |
PINATA_SECRET: ${{ secrets.PINATA_SECRET }} | |
run: | | |
json_array=($(jq -r '.[]' ".github/outputs/all_changed_files.json")) | |
for i in "${json_array[@]}" | |
do | |
npx aave-cli ipfs $i -u ${{ github.event_name != 'pull_request'}} | |
done |