Skip to content

Silverblue

Silverblue #32

Workflow file for this run

name: build
on:
schedule:
- cron: '0 15 * * *'
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.txt'
workflow_dispatch:
jobs:
build-silverblue:
runs-on: ubuntu-latest
steps:
- name: Checkout Push to Registry action
uses: actions/checkout@v3
- name: build
shell: bash
run: podman build -f Containerfile-Silverblue -t ghcr.io/emblem-66/fedora-silverblue:latest
- name: login
shell: bash
run: podman login ghcr.io -u Emblem-66 -p ${{ secrets.GITHUB_TOKEN }}
- name: push
shell: bash
run: podman push ghcr.io/emblem-66/fedora-silverblue:latest
# build-kinoite:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout Push to Registry action
# uses: actions/checkout@v3
# - name: build
# shell: bash
# run: podman build -f Containerfile-Kinoite -t ghcr.io/emblem-66/fedora-kinoite:latest
# - name: login
# shell: bash
# run: podman login ghcr.io -u Emblem-66 -p ${{ secrets.GITHUB_TOKEN }}
# - name: push
# shell: bash
# run: podman push ghcr.io/emblem-66/fedora-kinoite:latest