Skip to content

Create blacklint.yml #13

Create blacklint.yml

Create blacklint.yml #13

Workflow file for this run

name: 🐳 Build Docker image
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- image: suchencjusz/filman-crawler
dockerfile: FILMAN-CRAWLER/Dockerfile
- image: suchencjusz/filman-discord
dockerfile: FILMAN-DISCORD/Dockerfile
- image: suchencjusz/filman-server
dockerfile: FILMAN-SERVER/Dockerfile
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ matrix.image }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ${{ matrix.dockerfile }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}