vestasync/.github/workflows/docker_build.yml

31 lines
638 B
YAML
Raw Normal View History

2023-04-17 17:32:10 +03:00
name: Build and Publish Docker Image
on:
2023-04-17 18:48:33 +03:00
workflow_dispatch:
2023-04-17 17:32:10 +03:00
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
2023-04-17 18:48:33 +03:00
uses: actions/checkout@v3
2023-04-17 17:32:10 +03:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
2023-04-17 18:48:33 +03:00
uses: docker/build-push-action@v4
2023-04-17 17:32:10 +03:00
with:
context: .
push: true
2023-04-17 17:35:49 +03:00
tags: vvzvlad/vestasync:latest