Skip to content

Fixed various issues #1

Fixed various issues

Fixed various issues #1

Workflow file for this run

name: Deploy prod 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}}

Check failure on line 21 in .github/workflows/push-docker.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/push-docker.yaml

Invalid workflow file

You have an error in your yaml syntax on line 21
- name: 'Build Inventory Image'
run: |
# Processor
docker build processor --tag ghcr.io/qubic/qubic-stats-processor:${{github.ref_name}}
docker push ghcr.io/qubic/qubic-stats-processor:${{github.ref_name}}
# API
docker build api --tag ghcr.io/qubic/qubic-stats-api:${{github.ref_name}}
docker push ghcr.io/qubic/qubic-stats-api:${{github.ref_name}}