Skip to content

feat: update oca-rs to 0.3.0-rc.11 for search limit support #15

feat: update oca-rs to 0.3.0-rc.11 for search limit support

feat: update oca-rs to 0.3.0-rc.11 for search limit support #15

Workflow file for this run

name: CI
on:
push:
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
with:
images: humancolossus/oca-repository
tag-sha: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
tag-semver: |
{{ version }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}