trade_bot/.gitea/workflows/publish.yaml
Jeff 91d0f50fd4
Some checks failed
Podman Image CI / build (push) Failing after 40s
Clean up with clippy; Try gitea action
2024-07-18 06:03:00 -04:00

21 lines
436 B
YAML

name: Podman Image CI
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Podman
run: |
sudo apt-get update
sudo apt-get install -y podman
- name: Build the image
run: podman build --tag git.jeffa.io/jeff/trade_bot .
- name: Push the image
run: podman push git.jeffa.io/jeff/trade_bot