Skip to content

Commit 6b1d304

Browse files
Merge pull request #24 from tensor4all/terasaki/resolve-issue-22
Fix ExportPluto.yml
2 parents 5afb7a3 + 46fef5e commit 6b1d304

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ExportPluto.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ jobs:
4646
4747
- name: Edit .gitignore to allow to track html files
4848
run: |
49-
rm .gitignore
49+
sed -i '/\.html$/s/^/# /' .gitignore
50+
cat .gitignore
5051
- name: Instantiate
5152
run: |
5253
julia --project -e 'using Pkg; Pkg.instantiate()'
@@ -64,13 +65,13 @@ jobs:
6465
Export_baked_state=false,
6566
# more parameters can go here
6667
)'
67-
- name: List files
68+
- name: List files in pluto_notebooks
6869
run: ls ./pluto_notebooks
6970
- name: Deploy to gh-pages
7071
uses: JamesIves/github-pages-deploy-action@releases/v4
7172
if: github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main'
7273
with:
7374
token: ${{ secrets.GITHUB_TOKEN }}
7475
branch: gh-pages
75-
folder: ./
76+
folder: ./pluto_notebooks
7677
single-commit: true

0 commit comments

Comments
 (0)