ci: create major and minor tags on release for actions version (#60) #19
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
on: | |
push: | |
branches: ['main'] | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # for PYPI release | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Release | |
id: release | |
uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3 | |
- uses: actions/checkout@v4 | |
if: ${{ steps.release.outputs.release_created }} | |
- name: tag major and minor versions | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
# setup github actions bot as author | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
# removing previous tags | |
git tag -d v${{ steps.release.outputs.major }} || true | |
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true | |
git push origin :v${{ steps.release.outputs.major }} || true | |
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true | |
# creating new tags | |
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}" | |
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" | |
git push origin v${{ steps.release.outputs.major }} | |
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
if: ${{ steps.release.outputs.release_created }} | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
- name: Build package | |
if: ${{ steps.release.outputs.release_created }} | |
run: python -m build | |
- name: Publish package | |
if: ${{ steps.release.outputs.release_created }} | |
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0 |