Merge pull request #27 from sbarbett/shane-dev #18
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: Release_Workflow | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
Code_Analysis_Job: | |
runs-on: ubuntu-latest | |
environment: test | |
steps: | |
- | |
name: Check out repository code | |
uses: actions/checkout@v4 | |
- | |
name: Setup Python environment | |
uses: actions/setup-python@v5 | |
- | |
name: Install Dependencies | |
run: pip install requests | |
- | |
name: Running acceptace test | |
run: python test.py | |
env: | |
ULTRADNS_UNIT_TEST_USERNAME: ${{ secrets.ULTRADNS_UNIT_TEST_USERNAME }} | |
ULTRADNS_UNIT_TEST_PASSWORD: ${{ secrets.ULTRADNS_UNIT_TEST_PASSWORD }} | |
ULTRADNS_UNIT_TEST_HOST_URL: ${{ secrets.ULTRADNS_UNIT_TEST_HOST_URL }} | |
Release_Job: | |
runs-on: ubuntu-latest | |
needs: Code_Analysis_Job | |
environment: prod | |
steps: | |
- | |
name: Check out repository code | |
uses: actions/checkout@v4 | |
- | |
name: Setup Python environment | |
uses: actions/setup-python@v5 | |
- | |
name: Create Release Info | |
run: echo "RELEASE_VERSION=$(cat .plugin-version)" >> $GITHUB_ENV | |
- | |
name: Installing Dependencies | |
run: | | |
pip install requests | |
pip install hatch | |
- | |
name: Versioning the build | |
run: hatch version ${{ env.RELEASE_VERSION }} | |
- | |
name: Creating python Package | |
run: hatch build | |
- | |
name: create release Tag | |
run: | | |
git tag ${{ env.RELEASE_VERSION }} | |
git push origin ${{ env.RELEASE_VERSION }} | |
- | |
name: Publishing python Package | |
uses: pypa/[email protected] | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} |