Skip to content

Fix schemas to only require caseExact if type is a string #3

Fix schemas to only require caseExact if type is a string

Fix schemas to only require caseExact if type is a string #3

Workflow file for this run

name: ci-build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository }}
- name: Build and push Docker images
uses: docker/[email protected]
with:
tags: ${{ steps.meta.outputs.tags }}
push: ${{ github.ref == 'refs/heads/master' }}
platforms: linux/amd64,linux/arm64