Update game events (#71) #77
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
# This workflow will build a docker image and push it to dockerhub docker registry | |
# For more information see: https://github.com/marketplace/actions/build-and-push-docker-images | |
name: Dockerhub Image | |
on: | |
push: | |
branches: [ main ] | |
tags: | |
- 'v*.*.*' | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: checkout | |
uses: actions/checkout@v2 | |
- | |
name: Docker meta | |
id: docker_meta | |
uses: crazy-max/ghaction-docker-meta@v1 | |
with: | |
images: dcaribou/transfermarkt-scraper | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
- | |
name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |