12 lines
526 B
YAML
12 lines
526 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: "fedora"
|
|
steps:
|
|
- run: git clone "https://forgejoever.homelab0ne.xyz/mustard/joeverfin"
|
|
- run: pwd && ls
|
|
- run: pushd ./joeverfin
|
|
- run: pwd && ls
|
|
- run: pushd joeverfin && podman build --cgroup-manager=cgroupfs . -t "forgejoever.homelab0ne.xyz/mustard/joeverfin:latest"
|
|
- run: podman login https://forgejoever.homelab0ne.xyz -u mustard -p {{ secrets.REGISTRY_TOKEN }}
|
|
- run: podman push "forgejoever.homelab0ne.xyz/mustard/joeverfin:latest"
|