π Update Magick.NET #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker image build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
workflow_dispatch: | |
jobs: | |
docker-image-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: | | |
docker build \ | |
-t "tdpdne:dev" \ | |
-f "src/TDPDNE.Telegram.Bot/Dockerfile" \ | |
${{github.workspace}}/src |