Skip to content

Build Workflow

Build Workflow #200

Workflow file for this run

name: Build Workflow
on:
schedule:
- cron: '0 0 * * SUN'
push:
jobs:
build:
continue-on-error: true
strategy:
fail-fast: false
matrix:
image: [ bytecode-viewer, discord, forkwork, keepassxc, spotify, osslsigncode-alpine, recaf ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DOCKER
uses: docker/login-action@v2
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./${{ matrix.image }}/
file: ./${{ matrix.image }}/Dockerfile
tags: "${{ github.repository_owner }}/${{ matrix.image }}"
push: true
cache-from: type=gha
cache-to: type=gha,mode=max