trade_bot/.gitea/workflows/publish.yaml

17 lines
321 B
YAML
Raw Normal View History

2024-07-18 10:03:00 +00:00
name: Podman Image CI
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the image
2024-07-18 10:11:06 +00:00
run: docker build --tag git.jeffa.io/jeff/trade_bot .
2024-07-18 10:03:00 +00:00
- name: Push the image
2024-07-18 10:11:06 +00:00
run: docker push git.jeffa.io/jeff/trade_bot