sero/.github/workflows/dev.yml
Dmitry Miasnenko 782d8e4b05
Update readme. Remove openapi.json and adjust workflows. (#26)
* readme-fix: remove warning about cli tool. Update version in docker-compose.yml to match.

* Updated readme.md. Fully remove openapi.json. Remove version cmp beteen Cargo.toml and openapi.json. Added openapi.josn to gitignore.
2024-10-04 15:59:59 +03:00

27 lines
630 B
YAML

name: "Test"
on:
push:
branches:
- "dev"
jobs:
push-to-registry:
name: "Build and push Docker image to Docker Hub"
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: actions/checkout@v3
- name: "Log in to Docker Hub"
uses: "docker/login-action@v2"
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: "Build and push Docker image"
uses: "docker/build-push-action@v3"
with:
context: .
push: true
tags: clowzed/sero:dev-unstable