Skip to content

Review everything

Review everything #79

Workflow file for this run

name: Build Docker Container
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: c2sm
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: false
tags: c2sm/extpar:latest
- name: Upload Docker image as artifact
uses: actions/upload-artifact@v4
with:
name: extpar_image.tar
path: extpar_image.tar