testing versioning
Some checks failed
Build CI / AMD64 Build (push) Failing after 1m14s

This commit is contained in:
2026-03-02 13:44:35 +00:00
parent dd0ba72cc1
commit 86e4cf78d1

View File

@@ -2,6 +2,8 @@ name: Build CI
# on: [push] # on: [push]
on: on:
push: push:
tags:
- "v*"
branches: branches:
- master - master
paths: paths:
@@ -63,10 +65,11 @@ jobs:
- name: Save Artifacts - name: Save Artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: Prod-latest-x86_64.AppImage name: Prod-${{ github.ref_type == "tag" && github.ref_name || "master" }}-x86_64.AppImage
path: Prod-latest-x86_64.AppImage path: Prod-latest-x86_64.AppImage
- name: Create New Release - name: Create New Release
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:
files: Prod-latest-x86_64.AppImage files: Prod-latest-x86_64.AppImage
prerelease: true prerelease: ${{ github.ref_type == "tag" }}