Skip to content

Hack to always run corrections to data #14

Hack to always run corrections to data

Hack to always run corrections to data #14

name: Build and Publish
on:
push:
branches:
- main
pull_request:
jobs:
build-and-push-docker-image:
name: Build Docker image and publish
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
# - name: Set up Docker Buildx
# id: buildx
# uses: docker/setup-buildx-action@v2
- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.PUBLISHING_GITHUB_USERNAME }}
password: ${{ secrets.PUBLISHING_GITHUB_TOKEN }}
- name: Build image and push to Docker Hub and GitHub Container Registry
uses: docker/build-push-action@v2
with:
context: ./
tags: |
ghcr.io/madgrades/api.madgrades.com:latest
# push: true
push: ${{ github.ref == 'refs/heads/main' }}