Skip to content

Commit c0ded39

Browse files
committed
more testing
1 parent 97538dd commit c0ded39

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,14 @@ jobs:
3838
run: cp -r dist /result/quick
3939

4040
- name: upload quick build artifact
41+
id: upload-quick
4142
uses: actions/upload-artifact@v4
4243
with:
4344
name: generated documentation (en)
4445
path: dist
4546

4647
- name: TODO - trigger script on server to download artifact
47-
run: echo "placeholder"
48+
run: echo 'Artifact URL is ${{ steps.upload-quick.outputs.artifact-url }}'
4849

4950
- name: build pot files
5051
run: sphinx-build -b gettext source locales/
@@ -88,10 +89,14 @@ jobs:
8889
- name: LOCAL - copy generated
8990
run: cp -r dist locales build /result
9091

91-
- name: upload artifact
92+
- name: upload full build artifact
93+
id: upload-full
9294
uses: actions/upload-artifact@v4
9395
with:
9496
name: generated documentation (all)
9597
path: dist
9698

99+
- name: TODO - trigger script on server to download FULL artifact
100+
run: echo 'Artifact URL is ${{ steps.upload-full.outputs.artifact-url }}'
101+
97102

0 commit comments

Comments
 (0)