add k8s-manifests for web into docs #12
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 web docker image on push | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- 'develop/**' | |
env: | |
IMAGE_NAME: notify-web | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build image | |
run: docker build . --file ./web/.docker/Dockerfile --tag $IMAGE_NAME |