Update wine to 9.21-wow64 #263
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: | |
pull_request: | |
jobs: | |
validate: | |
env: | |
IMAGE: panard/mtgo:pr${{ github.event.pull_request.number }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- run: make image DOCKER=docker BASE=$IMAGE | |
- name: Login to docker hub | |
uses: actions-hub/docker/login@master | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push image | |
uses: actions-hub/docker@master | |
with: | |
args: push $IMAGE | |