Remove now plugin in the left menu of the WebUI (in the make webui task) #682
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: ci | |
on: | |
pull_request: | |
branches: [ develop ] | |
push: | |
branches: [ master, develop ] | |
tags: | |
- v* | |
jobs: | |
quality: | |
uses: ./.github/workflows/quality.yml | |
test: | |
uses: ./.github/workflows/test.yml | |
needs: [quality] | |
build: | |
if: github.event_name != 'pull_request' | |
uses: ./.github/workflows/build.yml | |
needs: [quality, test] | |
build_docker: | |
if: github.event_name != 'pull_request' | |
uses: ./.github/workflows/build_docker.yml | |
secrets: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} | |
needs: [quality, test] |