Skip to content

Data Built and Uploaded. New Tag: 0.1.40 #579

Data Built and Uploaded. New Tag: 0.1.40

Data Built and Uploaded. New Tag: 0.1.40 #579

Workflow file for this run

name: Docs
on:
push:
tags:
- '*' # Triggers the workflow only on version tags
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
jobs:
# Placeholder
build-docs:
if: github.actor != 'github-actions[bot]'
# needs: [data-visualization-save-to-docs, upload-to-figshare, gen-stats-and-push]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: List files cwd
run: ls -lah
- name: List files with wildcard
run: ls -lah *
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./docs
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
deploy-docs:
if: github.actor != 'github-actions[bot]'
needs: [build-docs]
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4