Add support for the log_level option in services and jobs (not sync) #351
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: Web Editor Deployment | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- uses: actions/checkout@v3 | |
- run: npm install | |
- run: npm run build | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: dist | |
exclude_assets: 'report.html' | |
user_name: 'openEO CI' | |
user_email: openeo.ci@uni-muenster.de | |
cname: editor.openeo.org |