Skip to content

fix the schemas

fix the schemas #4

Workflow file for this run

name: Publish
on:
push:
branches: [ main, paritosh/fix ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Build the image
run: docker build -t ghcr.io/${{ github.repository }}:${{ github.sha }} .
- name: Push the images
run: |
docker push ghcr.io/${{ github.repository }}:${{ github.sha }}