10 lines
No EOL
352 B
YAML
10 lines
No EOL
352 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: selfhosted
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: podman login git.farthergate.com -u=asr -p='${{secrets.FORGEJO_TOKEN}}'
|
|
- run: podman build . -t git.farthergate.com/asr/phlexite:latest
|
|
- run: podman push git.farthergate.com/asr/phlexite:latest |