Skip to content

CI 0.1.1 tag

CI 0.1.1 tag #35

Workflow file for this run

name: CI 0.1.1 tag
on:
schedule:
- cron: '0 9 * * *'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: https://github.com/orenlab/pytmbot.git#v0.1.1
target: prod
sbom: True
provenance: True
file: Dockerfile
push: true
tags: orenlab/pytmbot:0.1.1