10 lines
No EOL
345 B
YAML
10 lines
No EOL
345 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: apt-get update && apt-get install -y podman
|
|
- run: podman build . -t quay.io/aspr/phlexite:latest
|
|
- run: podman push quay.io/aspr/phlexite:latest -u=aleksrutins -p='${{secrets.QUAY_PASSWORD}}' |