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:
33
33
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.131.0/hugo_extended_0.131.0_linux-amd64.deb \
34
34
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
35
35
36
+ - name : Install Dart Sass Embedded # Installs dart-sass
37
+ run : sudo snap install dart-sass-embedded
38
+
36
39
- name : Build with Hugo
37
40
run : |
38
41
git submodule update --init --recursive # fetch theme
39
42
make html
40
43
44
+ - name : Upload artifact
45
+ uses : actions/upload-pages-artifact@v3
46
+ with :
47
+ path : ./public
48
+
41
49
- name : Deploy pages
42
50
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