Use workaround to avoid duckdb raising unnecessary warning #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker Image | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- id: extract_branch | |
name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GHCR (GitHub Packages) | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push dev containers | |
uses: docker/build-push-action@v5 | |
if: github.event_name == 'pull_request' | |
with: | |
file: "./docker/Dockerfile" | |
push: true | |
tags: | | |
mrcide/naomi:${{steps.extract_branch.outputs.branch}} | |
ghcr.io/${{github.repository}}:${{steps.extract_branch.outputs.branch}} | |
- name: Build and push prod containers | |
uses: docker/build-push-action@v5 | |
if: github.event_name != 'pull_request' | |
with: | |
file: "./docker/Dockerfile" | |
push: true | |
tags: | | |
mrcide/naomi:latest | |
mrcide/naomi:${{steps.extract_branch.outputs.branch}} | |
ghcr.io/${{github.repository}}:latest | |
ghcr.io/${{github.repository}}:${{steps.extract_branch.outputs.branch}} |