mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 14:55:00 +00:00
Co-authored-by: sergargar <sergio@verica.io> Co-authored-by: Pepe Fagoaga <pepe@verica.io>
35 lines
946 B
YAML
35 lines
946 B
YAML
name: pypi-release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
env:
|
|
GITHUB_BRANCH: master
|
|
|
|
jobs:
|
|
release-prowler-job:
|
|
runs-on: ubuntu-latest
|
|
name: Release Prowler to PyPI
|
|
steps:
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ env.GITHUB_BRANCH }}
|
|
- name: setup python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.9 #install the python needed
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install build --upgrade
|
|
#- name: Set version number
|
|
# run: python update_prowler_version.py ${{ env.VERSION }}
|
|
- name: Build package
|
|
run: python -m build
|
|
- name: Publish package to PyPI
|
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
with:
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|