docker-timetrex/.github/workflows/build.yml

24 lines
487 B
YAML
Raw Normal View History

name: ci
on:
2022-11-24 09:18:05 +00:00
workflow_dispatch:
push:
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: freeitathens/timetrex:latest