Fix dockerfile name #63
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: Build VV8 postprocessors | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
upload_to_docker: | |
name: Push docker image to docker Hub | |
runs-on: [self-hosted, linux, postprocessor-builder] | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Build postprocessors | |
uses: ./.github/build-postprocessors | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: visiblev8 | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Extract short SHA | |
id: short_sha | |
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: visiblev8/vv8-postprocessors | |
tags: | | |
type=raw,value=latest,enable=true | |
type=raw,value=${{ steps.short_sha.outputs.sha_short }},enable=true | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./post-processor/ | |
file: ./post-processor/build/Dockerfile.vv8 | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Remove artifacts | |
if: always() | |
uses: docker://ubuntu:latest | |
with: | |
entrypoint: /usr/bin/rm | |
args: -rf ./post-processor/ |