This repository has been archived by the owner on Sep 1, 2023. It is now read-only.
Bump protobufjs from 6.10.2 to 6.11.4 in /webapp #32
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: Build docker | |
on: | |
push: | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Log into registry ${{ env.REGISTRY }} | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- name: Build requirements | |
run: | | |
sudo apt install -y protobuf-compiler | |
make configs webapp-build | |
- name: Build and push Docker image for nodes | |
uses: docker/build-push-action@v4 | |
with: | |
context: backend | |
file: backend/Dockerfile.persistent | |
push: true | |
tags: ghcr.io/c4dt/service-stainless-persistent:latest | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
context: webapp | |
push: true | |
tags: ghcr.io/c4dt/service-stainless-webapp:latest |