Option to hide experimental elements from lists #92 #191
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: Deploy Examples | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
CLIENT_URL: /openeo-vue-components/ | |
steps: | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16' | |
- uses: actions/checkout@v2 | |
- run: npm install | |
- run: npm run build-examples | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: assets | |
user_name: 'openEO CI' | |
user_email: [email protected] |