debug workflow #40

Merged
tischrei merged 4 commits from fix_workflow into main 2025-08-08 14:01:24 +00:00
2 changed files with 8 additions and 4 deletions
Showing only changes of commit 6d6939883f - Show all commits

View File

@ -36,8 +36,7 @@ jobs:
UMAMI_USERNAME: ${{ secrets.UMAMI_USERNAME }} UMAMI_USERNAME: ${{ secrets.UMAMI_USERNAME }}
UMAMI_PASSWORD: ${{ secrets.UMAMI_PASSWORD }} UMAMI_PASSWORD: ${{ secrets.UMAMI_PASSWORD }}
run: | run: |
chmod +x ./tools/collect_statistics.py python ./tools/collect_statistics.py \
./tools/collect_statistics.py \
--website-id "${{ secrets.UMAMI_WEBSITE_ID }}" \ --website-id "${{ secrets.UMAMI_WEBSITE_ID }}" \
--cloud-environment "eu_de" \ --cloud-environment "eu_de" \
--environment "public" \ --environment "public" \
@ -48,7 +47,7 @@ jobs:
UMAMI_USERNAME: ${{ secrets.UMAMI_USERNAME }} UMAMI_USERNAME: ${{ secrets.UMAMI_USERNAME }}
UMAMI_PASSWORD: ${{ secrets.UMAMI_PASSWORD }} UMAMI_PASSWORD: ${{ secrets.UMAMI_PASSWORD }}
run: | run: |
./tools/collect_statistics.py \ python ./tools/collect_statistics.py \
--website-id "${{ secrets.UMAMI_WEBSITE_ID }}" \ --website-id "${{ secrets.UMAMI_WEBSITE_ID }}" \
--cloud-environment "swiss" \ --cloud-environment "swiss" \
--environment "public" \ --environment "public" \

2
tools/collect_statistics.py Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. # you may not use this file except in compliance with the License.