ci: remove workflow_dispatch inputs (Gitea 1.22 rejects unknown on type)
Some checks failed
Release / build-windows-amd64 (push) Waiting to run
Test / rust-fmt-check (push) Waiting to run
Test / rust-tests (push) Successful in 7m19s
Test / frontend-typecheck (push) Successful in 1m26s
Test / frontend-tests (push) Successful in 1m19s
Release / build-linux-arm64 (push) Failing after 14m12s
Test / rust-clippy (push) Failing after 17m54s
Release / build-linux-amd64 (push) Has been cancelled

This commit is contained in:
Shaun Arman 2026-03-29 18:25:03 -05:00
parent 8f18cfa3be
commit 661898ba91

View File

@ -4,18 +4,12 @@ on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
tag:
description: 'Release tag (e.g. v0.1.0-rc1)'
required: true
default: 'v0.1.0-rc1'
jobs:
build-linux-amd64:
runs-on: linux-amd64
env:
RELEASE_TAG: ${{ inputs.tag || github.ref_name }}
RELEASE_TAG: ${{ github.ref_name }}
container:
image: rust:1.88-slim
steps:
@ -64,7 +58,7 @@ jobs:
build-windows-amd64:
runs-on: linux-amd64
env:
RELEASE_TAG: ${{ inputs.tag || github.ref_name }}
RELEASE_TAG: ${{ github.ref_name }}
container:
image: rust:1.88-slim
steps:
@ -113,7 +107,7 @@ jobs:
build-linux-arm64:
runs-on: linux-arm64
env:
RELEASE_TAG: ${{ inputs.tag || github.ref_name }}
RELEASE_TAG: ${{ github.ref_name }}
container:
image: rust:1.88-slim
steps: