Skip to content

Fix Docker

Fix Docker #41

Workflow file for this run

name: CI
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker meta
id: meta
uses: crazy-max/ghaction-docker-meta@v2
with:
images: idena/tg-bot
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build & push docker
uses: docker/build-push-action@v2
with:
context: .
push: true
file: ./Dockerfile
tags: ${{ steps.meta.outputs.tags }}