Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ExportPluto.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ jobs:

- name: Edit .gitignore to allow to track html files
run: |
rm .gitignore
sed -i '/\.html$/s/^/# /' .gitignore
cat .gitignore
- name: Instantiate
run: |
julia --project -e 'using Pkg; Pkg.instantiate()'
Expand All @@ -64,13 +65,13 @@ jobs:
Export_baked_state=false,
# more parameters can go here
)'
- name: List files
- name: List files in pluto_notebooks
run: ls ./pluto_notebooks
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@releases/v4
if: github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main'
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: ./
folder: ./pluto_notebooks
single-commit: true
Loading