We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da0007e commit 2752370Copy full SHA for 2752370
6 files changed
.github/workflows/deploy.yml
@@ -63,9 +63,11 @@ jobs:
63
run: mkdocs build
64
65
- name: Setup Pages
66
+ if: github.event_name == 'push'
67
uses: actions/configure-pages@v4
68
69
- name: Upload artifact
70
71
uses: actions/upload-pages-artifact@v3
72
with:
73
path: ./site
@@ -76,7 +78,7 @@ jobs:
76
78
url: ${{ steps.deployment.outputs.page_url }}
77
79
runs-on: ubuntu-latest
80
needs: build
- if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
81
+ if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
82
steps:
83
- name: Deploy to GitHub Pages
84
id: deployment
data/tables/table1.csv
data/tables/table2.csv
data/tables/table3.csv
data/tables/table4.csv
data/tables/table5.csv
0 commit comments