Simplify re-raise for non-legacy #418
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Egg | |
on: | |
push: | |
branches: [ master, '3.0'] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-egg: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y --no-install-recommends python3 git zip | |
- uses: actions/checkout@v4 | |
- name: Build egg | |
run: | | |
./build_client_egg.sh python3 | |
- name: Upload egg | |
uses: actions/upload-artifact@v4 | |
with: | |
name: egg | |
path: insights.zip | |
retention-days: 7 |