Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update apibara version #49

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ jobs:

- name: Download sink binaries
run: |
wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.1/sink-webhook-x86_64-linux.gz
wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.2/sink-webhook-x86_64-linux.gz
gunzip sink-webhook-x86_64-linux.gz
sudo cp sink-webhook-x86_64-linux /bin/sink-webhook
sudo chmod 777 /bin/sink-webhook

wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.1/sink-postgres-x86_64-linux.gz
wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.2/sink-postgres-x86_64-linux.gz
gunzip sink-postgres-x86_64-linux.gz
sudo cp sink-postgres-x86_64-linux /bin/sink-postgres
sudo chmod 777 /bin/sink-postgres
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ cp ./target/release/$APP_NAME /bin/server
EOF

# Download sink-webhook from the Github release
RUN wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.1/sink-webhook-x86_64-linux.gz
RUN wget https://github.com/apibara/dna/releases/download/sink-webhook/v0.3.2/sink-webhook-x86_64-linux.gz
RUN gunzip sink-webhook-x86_64-linux.gz
RUN cp sink-webhook-x86_64-linux /bin/sink-webhook

# Download sink-postgres from the Github release
RUN wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.1/sink-postgres-x86_64-linux.gz
RUN wget https://github.com/apibara/dna/releases/download/sink-postgres/v0.4.2/sink-postgres-x86_64-linux.gz
RUN gunzip sink-postgres-x86_64-linux.gz
RUN cp sink-postgres-x86_64-linux /bin/sink-postgres

Expand Down