Skip to content

bot is somewhat fixed #62

bot is somewhat fixed

bot is somewhat fixed #62

Workflow file for this run

name: Docker build
on:
- push
- pull_request
jobs:
docker:
name: Docker build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get Docker version
run: docker --version
- name: Docker Login
uses: docker/login-action@v1
with:
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
registry: "ghcr.io"
- name: Build Docker image
uses: docker/build-push-action@v2
with:
file: "./Dockerfile"
tags: ghcr.io/${{ github.repository }}:latest
push: true