chore: use version 1.19.9 #38
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: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- env: | |
DOCKER_BUILDKIT: 1 | |
name: Build | |
run: | | |
VERSION=`cat ./VERSION` | |
docker buildx build \ | |
--build-arg CLOUD_FIRESTORE_EMULATOR_VERSION=$VERSION \ | |
--platform linux/amd64,linux/arm64 \ | |
. |