0.57.0 (2023-08-25) #98
Workflow file for this run
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: Docker Images to DockerHub | |
on: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Generate tag | |
uses: frabert/[email protected] | |
id: genTag | |
with: | |
pattern: '.*(\d+\.\d+\.\d+).*' | |
string: "${{ github.event.release.tag_name }}" | |
replace-with: '$1' | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push main image | |
id: docker_build_main | |
uses: docker/build-push-action@v2 | |
with: | |
file: ./Dockerfile | |
context: . | |
push: true | |
tags: | | |
transferwiseworkspace/pipelinewise:${{ steps.genTag.outputs.replaced }} | |
transferwiseworkspace/pipelinewise:latest | |
- name: Build and push barebone image | |
id: docker_build_barebone | |
uses: docker/build-push-action@v2 | |
with: | |
file: ./Dockerfile.barebone | |
context: . | |
push: true | |
tags: | | |
transferwiseworkspace/pipelinewise-barebone:${{ steps.genTag.outputs.replaced }} | |
transferwiseworkspace/pipelinewise-barebone:latest | |
- name: Build and push main image with only default connectors | |
id: docker_build_default | |
uses: docker/build-push-action@v2 | |
with: | |
file: ./Dockerfile | |
context: . | |
build_args: | | |
"connectors=default" | |
push: true | |
tags: | | |
transferwiseworkspace/pipelinewise:${{ steps.genTag.outputs.replaced }}-default | |
transferwiseworkspace/pipelinewise:latest-default | |
- name: Image digests | |
run: | | |
echo ${{ steps.docker_build_main.outputs.digest }} | |
echo ${{ steps.docker_build_barebone.outputs.digest }} | |
echo ${{ steps.docker_build_default.outputs.digest }} |