Skip to content

forgot hyprpaper, also do a local hyprland install to ensure no missi… #9

forgot hyprpaper, also do a local hyprland install to ensure no missi…

forgot hyprpaper, also do a local hyprland install to ensure no missi… #9

Workflow file for this run

name: Build
on:
#schedule:
# - cron: "21 21 * * *"
push:
branches: ["main"]
env:
REGISTRY: ghcr.io
IMAGE_NAME: "fedora-atomic-hyprland"
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}
REGISTRY_USER: ${{ github.actor }}
REGISTRY_PASSWORD: ${{ github.token }}
jobs:
podman-build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repo
uses: actions/[email protected]
- name: Build container image
uses: redhat-actions/[email protected]
with:
context: "."
containerfiles: Containerfile
image: ${{ env.IMAGE_NAME }}
layers: false
oci: true
- name: Push to ghcr.io
uses: redhat-actions/[email protected]
with:
image: ${{ env.IMAGE_NAME }}
tags: "latest"
registry: ${{ env.IMAGE_REGISTRY }}
username: ${{ env.REGISTRY_USER }}
password: ${{ env.REGISTRY_PASSWORD }}