Merge pull request #452 from ae-utbm/actions

Going back to actions again
This commit is contained in:
Théo DURR 2022-08-26 23:33:24 +02:00 committed by GitHub
commit fc6cdba8e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 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,8 @@ 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