removed debug output in JS #39
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 WebUI | |
on: | |
push: | |
# Sequence of patterns matched against refs/heads | |
branches: | |
- '**' | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
containerize: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Extract branch name | |
shell: bash | |
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | |
id: extract_branch | |
- name: downcase REPO | |
run: | | |
echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV} | |
- name: Log in to the Container registry | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build frontend | |
id: build_frontend | |
run: | | |
cd cee && sh run_build.sh | |
- name: Build container | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
if: steps.extract_branch.outputs.branch != 'main' | |
with: | |
context: . | |
push: true | |
tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }} | |
- name: Build container | |
id: docker_build_main | |
uses: docker/build-push-action@v2 | |
if: steps.extract_branch.outputs.branch == 'main' | |
with: | |
context: . | |
push: true | |
tags: ghcr.io/${{ env.REPO }}:${{ steps.extract_branch.outputs.branch }}, ghcr.io/${{ env.REPO }}:latest |