Update compilerplugin, scalapb-runtime, ... to 0.11.17 #472
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
# .github/workflows/branch.yml | |
name: PR | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: nelonoel/branch-name@v1.0.1 | |
- name: Docker Login | |
env: | |
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USER }} | |
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | |
run: docker login --username "$DOCKERHUB_USERNAME" --password "$DOCKERHUB_TOKEN" | |
- name: Download latest earthly | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.5.11/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
- name: Earthly Version | |
run: earthly --version | |
- name: Build | |
env: | |
COMMIT_HASH: ${{ github.sha }} | |
EARTHLY_BUILD_ARGS: "BRANCH_NAME,COMMIT_HASH" | |
FORCE_COLOR: 1 | |
run: earthly -P --ci +test-and-build |