File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments