2025-01-26 17:31:43 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
name: release-please
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release-please:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2025-01-26 20:09:18 +01:00
|
|
|
- name: release
|
2025-01-26 20:10:16 +01:00
|
|
|
uses: joaquinjsb/gitea-release-please-action@v4
|
2025-01-26 17:31:43 +00:00
|
|
|
with:
|
|
|
|
# this assumes that you have created a personal access token
|
|
|
|
# (PAT) and configured it as a GitHub action secret named
|
|
|
|
# `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
|
2025-01-26 18:00:07 +00:00
|
|
|
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
|
2025-01-26 18:19:10 +00:00
|
|
|
git-username: ${{ secrets.RL_USER }}
|
|
|
|
git-password: ${{ secrets.RL_PASSWD }}
|
2025-01-26 17:31:43 +00:00
|
|
|
# this is a built-in strategy in release-please, see "Action Inputs"
|
|
|
|
# for more options
|
2025-01-26 17:50:56 +00:00
|
|
|
release-type: simple
|
2025-01-26 19:53:27 +01:00
|
|
|
target-branch: main
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: tag major and minor versions
|
|
|
|
if: ${{ steps.release.outputs.release_created }}
|
|
|
|
run: |
|
|
|
|
git config user.name github-actions[bot]
|
|
|
|
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
|
|
|
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/joaquinjsb/gitea-release-please-action.git"
|
|
|
|
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
|
|
|
|
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 }}
|