File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -33,15 +33,19 @@ jobs:
3333 wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.131.0/hugo_extended_0.131.0_linux-amd64.deb \
3434 && sudo dpkg -i ${{ runner.temp }}/hugo.deb
3535
36+ - name : Install Dart Sass Embedded # Installs dart-sass
37+ run : sudo snap install dart-sass-embedded
38+
3639 - name : Build with Hugo
3740 run : |
3841 git submodule update --init --recursive # fetch theme
3942 make html
4043
44+ - name : Upload artifact
45+ uses : actions/upload-pages-artifact@v3
46+ with :
47+ path : ./public
48+
4149 - name : Deploy pages
4250 uses : actions/deploy-pages@v4
43- with :
44- folder : ./public
45- repository-name : scientific-python-translations/scientific-python-translations.github.com
46- branch : main
47- token : ${{ secrets.PERSONAL_TOKEN }}
51+
You can’t perform that action at this time.
0 commit comments