Register no-op archiver for bytestream URIs #29
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 | |
on: | |
pull_request: | |
branches: ["main"] | |
jobs: | |
publish: | |
name: Build frontend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: docker/build-push-action@v4 | |
with: | |
context: frontend | |
file: ./frontend/Dockerfile | |
push: false | |
tags: ghcr.io/buildbarn/bb-portal-frontend:${{ github.sha }} |