1 - core: update meteor (2.16) x mongo (6.0.15) x phaser (3.80) + dis… #1077
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: Build Docker Image | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
name: "Deploy image on Dockerhub" | |
steps: | |
- name: Check out | |
uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- 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 master | |
if: ${{ github.ref == 'refs/heads/master' }} | |
id: docker_build_master | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
tags: lempire/lemverse:latest |