Skip to content

added draft implementation for epoch transition #16

added draft implementation for epoch transition

added draft implementation for epoch transition #16

Workflow file for this run

name: Deploy Images to GHCR
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
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}}