Skip to content

deploy: pyvista/pyvista@7e54f446c1c5db4d18cbbd75ba303d7ee882ba94 #109

deploy: pyvista/pyvista@7e54f446c1c5db4d18cbbd75ba303d7ee882ba94

deploy: pyvista/pyvista@7e54f446c1c5db4d18cbbd75ba303d7ee882ba94 #109

Workflow file for this run

name: Docker Package
on:
workflow_dispatch:
push:
pull_request:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-publish:
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository )
steps:
- uses: actions/checkout@v2
- name: Log into the Container registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: token
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for the Docker image
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Set Docker tag based on branch
run: |
if {{ github.ref == 'refs/heads/master' }}
then
echo "BASE_IMAGE_TAG=latest" >> $GITHUB_ENV
else
echo "BASE_IMAGE_TAG=main" >> $GITHUB_ENV
fi
- name: Build and push the Docker image
uses: docker/build-push-action@v2
with:
context: .
file: Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
BASE_IMAGE_TAG=${{ env.BASE_IMAGE_TAG }}