Skip to content

Commit

Permalink
more testing
Browse files Browse the repository at this point in the history
  • Loading branch information
daringer committed Nov 23, 2024
1 parent 97538dd commit c0ded39
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,14 @@ jobs:
run: cp -r dist /result/quick

- name: upload quick build artifact
id: upload-quick
uses: actions/upload-artifact@v4
with:
name: generated documentation (en)
path: dist

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

- name: build pot files
run: sphinx-build -b gettext source locales/
Expand Down Expand Up @@ -88,10 +89,14 @@ jobs:
- name: LOCAL - copy generated
run: cp -r dist locales build /result

- name: upload artifact
- name: upload full build artifact
id: upload-full
uses: actions/upload-artifact@v4
with:
name: generated documentation (all)
path: dist

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


0 comments on commit c0ded39

Please sign in to comment.