Going back to actions again

This commit is contained in:
Théo DURR 2022-08-26 23:19:29 +02:00
parent ec65ca11d6
commit 895d4b33a6
No known key found for this signature in database
GPG Key ID: 708858E9F7281E30
2 changed files with 17 additions and 12 deletions

View File

@ -45,14 +45,19 @@ jobs:
sudo systemctl restart uwsgi sudo systemctl restart uwsgi
sentry-release: sentry:
- uses: actions/checkout@v2 runs-on: ubuntu-latest
- name: Create Sentry release environment: production
uses: getsentry/action-release@v1 timeout-minutes: 30
env: steps:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - uses: actions/checkout@v3
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} - name: Sentry Release
SENTRY_URL: ${{ secrets.SENTRY_URL }} uses: getsentry/action-release@v1.2.0
with: env:
environment: production SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
with:
environment: production

View File

@ -19,7 +19,7 @@ jobs:
uses: technote-space/get-diff-action@v6 uses: technote-space/get-diff-action@v6
id: git-diff id: git-diff
with: with:
PATTERNS: +**/*.+(py) PATTERNS: /**/*.py
- name: Set up python - name: Set up python
if: steps.git-diff.outputs.diff if: steps.git-diff.outputs.diff