Skip to content

chore: applied fix for v2 to v1 API (#5) #4

chore: applied fix for v2 to v1 API (#5)

chore: applied fix for v2 to v1 API (#5) #4

Workflow file for this run

name: Publish docker image
on:
push:
branches: [ master ]
jobs:
push_to_registry:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
name: Publish docker image
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner }}/esa-horaro-proxy:latest
cache-from: type=gha
cache-to: type=gha