3 Commits
Author SHA1 Message Date
me0nline 08aa4edfb1 Update ci.yml tags-ignore to ignore all tags
CI Test Suite / Run Component Tests & Pipeline Verification (push) Successful in 1m38s
2026-09-04 17:46:09 +02:00
me0nline e4f6a9295b De-hardcode workflow initiator in release-windows.yml to support release events and all tags 2026-09-04 17:46:00 +02:00
me0nline 7f6bf4442f De-hardcode workflow initiator in release-linux.yml to support release events and all tags 2026-09-04 17:45:48 +02:00
3 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ on:
branches:
- '**'
tags-ignore:
- 'v*'
- '*'
pull_request:
workflow_dispatch:
+5 -4
View File
@@ -1,15 +1,16 @@
name: Release Linux Binaries
on:
release:
types: [published, created]
push:
tags:
- 'v*'
- '*'
workflow_dispatch:
inputs:
tag:
description: 'Release tag (e.g. v1.0.2)'
description: 'Release tag (optional)'
required: false
default: 'v1.0.2'
jobs:
release-linux:
@@ -37,6 +38,6 @@ jobs:
GITEA_TOKEN: ${{ secrets.TAG_TOKEN || github.token }}
GITEA_SERVER_URL: ${{ github.server_url }}
GITEA_REPOSITORY: ${{ github.repository }}
GITEA_REF_NAME: ${{ inputs.tag || github.ref_name }}
GITEA_REF_NAME: ${{ github.event.release.tag_name || inputs.tag || github.ref_name }}
run: |
python3 compilation/upload_release.py --skip-build
+5 -4
View File
@@ -1,15 +1,16 @@
name: Release Windows Binaries
on:
release:
types: [published, created]
push:
tags:
- 'v*'
- '*'
workflow_dispatch:
inputs:
tag:
description: 'Release tag (e.g. v1.0.2)'
description: 'Release tag (optional)'
required: false
default: 'v1.0.2'
jobs:
release-windows:
@@ -54,7 +55,7 @@ jobs:
GITEA_TOKEN: ${{ secrets.TAG_TOKEN || github.token }}
GITEA_SERVER_URL: ${{ github.server_url }}
GITEA_REPOSITORY: ${{ github.repository }}
GITEA_REF_NAME: ${{ inputs.tag || github.ref_name }}
GITEA_REF_NAME: ${{ github.event.release.tag_name || inputs.tag || github.ref_name }}
run: |
$py = "python"
if (-not (Get-Command "python" -ErrorAction SilentlyContinue)) {