Skip to content

Fixed various issues #2

Fixed various issues

Fixed various issues #2

name: Deploy dev images to GHCR
on:
push:
branches:
- 'dev'
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-dev.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/push-docker-dev.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:dev
docker push ghcr.io/qubic/qubic-stats-processor:dev
# API
docker build api --tag ghcr.io/qubic/qubic-stats-api:dev
docker push ghcr.io/qubic/qubic-stats-api:dev