Skip to content

Added nicer error pages (#5) #56

Added nicer error pages (#5)

Added nicer error pages (#5) #56

Workflow file for this run

name: Build
# Controls when the workflow will run
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
# Get the repository's code
- name: Checkout
uses: actions/checkout@v2
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
username: megalan247
password: ${{ secrets.DOCKERHUB_LOGIN_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/arm64,linux/amd64
push: true
tags: megalan247/veriflow:latest