Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

fix: use boolean to parse sentry config enabled flag (#43) #22

fix: use boolean to parse sentry config enabled flag (#43)

fix: use boolean to parse sentry config enabled flag (#43) #22

Workflow file for this run

name: Main Update
on:
push:
branches:
- main
jobs:
publish-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and publish image
uses: docker/build-push-action@v3
with:
context: ./
file: ./build/Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: aamdigital/query-ms:latest
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
RUN_TESTS=${{ true }}