Skip to content

Commit

Permalink
fix: change sentry to use python
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonejt committed Sep 21, 2024
1 parent 0cf9223 commit 6c7e69e
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/deliver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,15 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
node-version: 20
python-version: "3.x"

- name: Install Dependencies
run: npm ci

- name: Build Project
run: npm run build
run: |
python -m pip install pipenv
pipenv install --dev
- name: Create Sentry Release
uses: getsentry/action-release@v1
Expand Down

0 comments on commit 6c7e69e

Please sign in to comment.