Include reference to identifier concepts for bio and spatial replicates #92
This file contains hidden or 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: PyLODE to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main # Set a branch name to trigger deployment | |
| pull_request: | |
| jobs: | |
| pylode-to-pages: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: true # Fetch Hugo themes (true OR recursive) | |
| fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
| - name: Build Pages | |
| uses: vliz-be-opsci/[email protected] | |
| with: | |
| baseuri: https://data.emobon.embrc.eu/ns | |
| outfolder: ./publish | |
| ignore_folders: shapes | |
| - name: Show contents | |
| run: find -L ./publish/ -type f | grep -v "\./\.git" | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v3 | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./publish/ |