Skip to content

Update readme and package repository #37

Update readme and package repository

Update readme and package repository #37

name: docker-executor
on:
push:
branches:
- 'main'
- 'develop'
tags:
- '*'
jobs:
publish-docker:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Executor
uses: docker/build-push-action@v3
with:
context: ./
file: ./executor/Dockerfile
push: true
tags: ghcr.io/linkedpipes/etl-executor:${{ github.ref_name }}
cache-from: type=gha
cache-to: type=gha,mode=max