-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add registry to release instead of commit
- Loading branch information
1 parent
4b27968
commit fd0d094
Showing
3 changed files
with
19 additions
and
10,729 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
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 |
---|---|---|
|
@@ -10,11 +10,24 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11.2' | ||
|
||
- name: Install Python Dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pyyaml | ||
- name: Aggregate Signals | ||
run: python .github/scripts/merge_all.py ./signals ./output | ||
|
||
- name: Upload to IPFS | ||
id: upload | ||
uses: aquiladev/[email protected] | ||
with: | ||
path: ./signals | ||
path: ./output | ||
service: pinata | ||
pinata_api_key: ${{ secrets.PINATA_API_KEY }} | ||
pinata_secret_api_key: ${{ secrets.PINATA_SECRET_API_KEY }} | ||
|
@@ -26,4 +39,6 @@ jobs: | |
uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: checksum.txt | ||
files: | | ||
checksum.txt | ||
./output/registry.json |
Oops, something went wrong.