Skip to content

Commit

Permalink
Merge pull request #78 from qubic/interval-quorum-data
Browse files Browse the repository at this point in the history
Add proper saving for last tick quorum data per epoch interval
  • Loading branch information
0xluk authored Dec 3, 2024
2 parents b65ee6b + 84f4f55 commit 7e06094
Show file tree
Hide file tree
Showing 10 changed files with 1,035 additions and 910 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/push-interval-quorum-data.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy dev images to GHCR

on:
push:
branches:
- 'interval-quorum-data'

jobs:
push-store-image:
runs-on: ubuntu-latest
steps:
- name: 'Checkout GitHub Action'
uses: actions/checkout@main

- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}

- name: 'Build Inventory Image'
run: |
docker build . --tag ghcr.io/qubic/qubic-archiver:${{github.ref_name}}
docker push ghcr.io/qubic/qubic-archiver:${{github.ref_name}}
Loading

0 comments on commit 7e06094

Please sign in to comment.