Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

fix: General Fixes

fix: General Fixes #2

Workflow file for this run

---
name: Create Container
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
IMAGE_NAME: isogenerator
IMAGE_REGISTRY: "ghcr.io/${{ github.repository_owner }}"
jobs:
push-image:
name: Build and push image
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
version:
- 38
- 39
- 40
include:
- version: 39
support: latest
steps:
- name: Build image
uses: JasonN3/build-action@action
with:
image_name: isogenerator
image_variant: main
version: ${{ matrix.version }}
support: ${{ matrix.support }}
signing_key: ${{ secrets.SIGNING_SECRET }}
continue-on-error: false