-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add token icons & remove optimism goerli (#378)
--------- Co-authored-by: K.K <m@mnm.mn>
- Loading branch information
Showing
292 changed files
with
2,666 additions
and
597 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Ipfs uploader | ||
# Uploads all changed svg files to ipfs once merged to main | ||
|
||
concurrency: | ||
group: ${{ github.workflow }} | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
ipfs-upload: | ||
runs-on: ubuntu-latest | ||
name: Ipfs uploader | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
registry-url: "https://registry.npmjs.org" | ||
cache: "yarn" | ||
|
||
- name: Get all changed *.svg file(s) | ||
id: changed-files | ||
uses: tj-actions/changed-files@f569b77fb1d9ad9f1a125757d7e9e07b1f320199 | ||
with: | ||
json: true | ||
write_output_files: true | ||
files: | | ||
assets/**/*.svg | ||
- 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 -y @bgd-labs/aave-cli ipfs -u $i | ||
done |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ cache/ | |
node_modules/ | ||
|
||
dist/ | ||
|
||
.DS_STORE |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.