diff --git a/.github/workflows/build_egg.yml b/.github/workflows/build_egg.yml new file mode 100644 index 0000000000..6cff0b8597 --- /dev/null +++ b/.github/workflows/build_egg.yml @@ -0,0 +1,27 @@ +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