Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Bump sentry-sdk from 1.26.0 to 1.38.0 #34

Bump sentry-sdk from 1.26.0 to 1.38.0

Bump sentry-sdk from 1.26.0 to 1.38.0 #34

Workflow file for this run

name: Release binaries
on:
push: # TODO: remove?
release: {types: created}
jobs:
binaries:
strategy:
matrix:
os: [ubuntu, windows, macos]
python: ['3.10']
runs-on: ${{ matrix.os }}-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Build binary
id: bin
run: |
pip install -r requirements.txt pyinstaller
pyinstaller --onefile --name=daemon_${{ matrix.os }} main.py
# --paths $(python${{ matrix.python }}-config --prefix)/lib/python${{ matrix.python }}/site-packages
echo "file=daemon_${{ matrix.os }}${{ matrix.os == 'windows' && '.exe' || '' }}" >> $GITHUB_OUTPUT
- if: github.event_name == 'release'
name: Upload release binaries
run: gh release upload "${{ github.event.release.tag_name }}" "${{ steps.bin.outputs.file }}"
env:
GH_TOKEN: ${{ github.token }}