docs: Update marketplaces.rst (Australia/NZ to com.au) (#542) #316
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 | |
on: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
outputs: | |
tag: ${{ steps.check-version.outputs.tag }} | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Upgrade pip | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pip | |
pip --version | |
- name: Install Poetry | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt poetry | |
poetry --version | |
- name: Check if there is a parent commit | |
id: check-parent-commit | |
run: | | |
echo "sha=$(git rev-parse --verify --quiet HEAD^)" >> $GITHUB_OUTPUT | |
- name: Detect and tag new version | |
id: check-version | |
if: steps.check-parent-commit.outputs.sha | |
uses: salsify/[email protected] | |
with: | |
version-command: | | |
bash -o pipefail -c "poetry version | awk '{ print \$2 }'" | |
- name: Bump version for developmental release | |
if: "! steps.check-version.outputs.tag" | |
run: | | |
poetry self add poetry-bumpversion | |
poetry version patch && | |
version=$(poetry version | awk '{ print $2 }') && | |
poetry version $version.dev.$(date +%s) | |
- name: Build package | |
run: | | |
poetry build --ansi | |
- name: Upload build package artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
retention-days: 1 | |
- name: Publish the release notes | |
id: create-release | |
uses: release-drafter/[email protected] | |
with: | |
publish: ${{ steps.check-version.outputs.tag != '' }} | |
tag: ${{ steps.check-version.outputs.tag }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
pypi-publish: | |
needs: release | |
environment: | |
name: publish | |
name: upload release to PyPI or TestPyPI | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: Download build package artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Publish package distributions to PyPI | |
continue-on-error: true | |
if: needs.release.outputs.tag | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
- name: Publish package on TestPyPI | |
continue-on-error: true | |
if: "! needs.release.outputs.tag" | |
uses: pypa/[email protected] | |
with: | |
repository-url: https://test.pypi.org/legacy/ |