Skip to content
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
8f334e2
fix: correct syntax error in ScanService.php for constant declaration…
lennartdohmann Jun 23, 2025
0aac676
chore(deps): update dependency webpack-dev-server to v5.2.2 (#225)
ata-no-one Jul 7, 2025
f47cd1c
chore(deps): update all non-major dependencies (#231)
ata-no-one Jul 16, 2025
4196616
chore(deps): update dependency psalm/phar to v6.13.0 (#232)
ata-no-one Jul 21, 2025
e618da6
chore(deps): update all non-major dependencies (#233)
ata-no-one Aug 4, 2025
2b45dc7
Add a quicker way for development with a local Nextcloud server and t…
lennartdohmann Aug 15, 2025
ca69689
Add Nextclouds worklfow templates and apply Nextcloud coding style (#…
lennartdohmann Aug 20, 2025
95f517d
Add maximum scan size setting for file uploads (#236)
lennartdohmann Aug 21, 2025
5ac7583
Devcontainer and Workflow Performance (#237)
lennartdohmann Aug 25, 2025
29a629a
Settings improvements (#238)
lennartdohmann Aug 26, 2025
2c4735f
Add additional settings (#239)
lennartdohmann Aug 26, 2025
30afc4b
Refactor logging messages and remove redundant debug statements (#240)
lennartdohmann Aug 27, 2025
f029274
Update README with development environment setup instructions (#241)
lennartdohmann Aug 27, 2025
4e893b8
Remove unused settings (#242)
lennartdohmann Aug 27, 2025
8c74827
Add make target for production like local setup (#243)
lennartdohmann Aug 27, 2025
d6baf1e
Outsource file scan actions (#244)
lennartdohmann Aug 27, 2025
e28ee89
Merge branch 'v31' into main
lennartdohmann Aug 28, 2025
8908a85
Reattach app releaser job (#247)
lennartdohmann Aug 28, 2025
71e4f7a
Merge branch 'v31' into main
lennartdohmann Aug 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,46 @@ jobs:
with:
name: build-dir
path: build/

release:
needs:
- tests
- build-devcontainer
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@master
with:
name: build-dir
path: build/

- name: write version to output
id: write-version-to-output
run: |
RELEASE_VERSION=${GITHUB_REF#refs/tags/}
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_OUTPUT

- name: Github Release
uses: softprops/action-gh-release@v2
with:
files: build/artifacts/*

- name: Attach tarball to github release
uses: svenstaro/upload-release-action@v2
id: attach_to_release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./build/artifacts/gdatavaas.tar.gz
asset_name: gdatavaas.tar.gz
tag: ${{ github.ref }}
overwrite: true

- name: Upload app to Nextcloud appstore
uses: nextcloud-releases/nextcloud-appstore-push-action@v1
with:
app_name: gdatavaas
appstore_token: ${{ secrets.VAAS_APPSTORE_TOKEN }}
download_url: ${{ steps.attach_to_release.outputs.browser_download_url }}
app_private_key: ${{ secrets.VAAS_NEXTCLOUD_KEY }}