v1.2.3 #9

Merged
timi merged 1 commits from dev into master 2026-01-19 05:22:31 +00:00
Showing only changes of commit beada81079 - Show all commits

View File

@ -30,14 +30,14 @@ jobs:
create-release:
runs-on: act_runner_base
needs: build-deploy
if: ${{ success() && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'master' }}
if: ${{ success() && github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'master' && startsWith(github.event.pull_request.title, 'v') }}
steps:
- name: Create release
env:
GITEA_TOKEN: ${{ secrets.RUNNER_TOKEN }}
GITEA_SERVER_URL: ${{ github.server_url }}
GITEA_REPOSITORY: ${{ github.repository }}
RELEASE_TAG: ci-${{ github.run_id }}
RELEASE_TAG: ${{ github.event.pull_request.title }}
RELEASE_TARGET: ${{ github.sha }}
run: |
if [ -z "$GITEA_TOKEN" ]; then