10 lines
417 B
YAML
10 lines
417 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: selfhosted
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: podman manifest create -a git.farthergate.com/asr/farthergate.com:latest
|
|
- run: podman build --platform linux/amd64 --manifest git.farthergate.com/asr/farthergate.com:latest .
|
|
- run: podman manifest push git.farthergate.com/asr/farthergate.com:latest --creds=asr:'${{secrets.PACKAGES_SECRET}}'
|