Skip to content

Commit

Permalink
uploading of files in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgriffin committed Dec 21, 2024
1 parent 2d02305 commit 1f1add9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-appimage-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ jobs:
fi
- name: Upload AppImage Files from dist/
uses: actions/upload-artifact@v4
with:
name: appimages
path: dist/*.appimage

# - name: Install Dependencies for gui test
# run: |
# sudo apt-get update
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-windows-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,9 @@ jobs:
echo "Setup EXE file is missing"
exit 1
fi
- name: Upload EXE Files from dist/
uses: actions/upload-artifact@v4
with:
name: exes
path: dist/*.exe
9 changes: 9 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,12 @@ jobs:
- name: Run Tests for marker_qt_2
run: |
poetry run pytest -m 'marker_qt_2' -vvv --log-cli-level=DEBUG --setup-show --maxfail=1
- name: Upload output Files from tests/output
uses: actions/upload-artifact@v4
with:
name: test-output
path: tests/output

0 comments on commit 1f1add9

Please sign in to comment.