Bump semver from 6.3.0 to 6.3.1 in /packages/frontend #253
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 frontend package | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'packages/frontend/**' | |
jobs: | |
build: | |
name: Build and push Docker images | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout master | |
uses: actions/checkout@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- | |
name: Cache Docker layers | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- | |
name: Build docker | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
tags: frikanalen/frontend:latest | |
context: packages/frontend | |
push: true | |
pull: true | |
file: packages/frontend/Dockerfile | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache |