Bump yarl from 1.8.2 to 1.9.2 #287
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 CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Docker Image for Server | |
run: docker build . --file Dockerfile.server --tag songhelper_server:$(date +%s) | |
- name: Build Docker Image for Bot | |
run: docker build . --file Dockerfile.bot --tag songhelper_bot:$(date +%s) | |
- name: Build Docker Image for Mobile | |
run: docker build . --file Dockerfile.mobile --tag songhelper_mobile:$(date +%s) |