We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5afb7a3 + 46fef5e commit 6b1d304Copy full SHA for 6b1d304
.github/workflows/ExportPluto.yaml
@@ -46,7 +46,8 @@ jobs:
46
47
- name: Edit .gitignore to allow to track html files
48
run: |
49
- rm .gitignore
+ sed -i '/\.html$/s/^/# /' .gitignore
50
+ cat .gitignore
51
- name: Instantiate
52
53
julia --project -e 'using Pkg; Pkg.instantiate()'
@@ -64,13 +65,13 @@ jobs:
64
65
Export_baked_state=false,
66
# more parameters can go here
67
)'
- - name: List files
68
+ - name: List files in pluto_notebooks
69
run: ls ./pluto_notebooks
70
- name: Deploy to gh-pages
71
uses: JamesIves/github-pages-deploy-action@releases/v4
72
if: github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main'
73
with:
74
token: ${{ secrets.GITHUB_TOKEN }}
75
branch: gh-pages
- folder: ./
76
+ folder: ./pluto_notebooks
77
single-commit: true
0 commit comments