Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
revolist authored Jun 25, 2024
1 parent 41850d5 commit f5e74a5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Automatically release a new version of the package when a new version is created
name: Release

on:
workflow_dispatch:
inputs:
version:
type: string
description: 'Version to release'
required: true
draft:
type: boolean
description: 'Draft release'
required: false
prerelease:
type: boolean
description: 'Prerelease'
required: false

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

0 comments on commit f5e74a5

Please sign in to comment.