Skip to content

Automatic development releases are removed #787

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Run Cross-Platform Tests (Build From Source)

on: [ workflow_dispatch ]
on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/development-release.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: Create Development Release

on:
push:
branches:
- main
workflow_dispatch:
inputs:
confirmation:
description: Enter the confirmation phrase 'DEVELOPMENT' (without quotes) if you are sure you want to trigger a development release.
required: true

jobs:
development_release:
if: github.event.inputs.confirmation == 'DEVELOPMENT'
name: Release
runs-on: ubuntu-latest
steps:
Expand Down
Loading