Skip to content

Commit

Permalink
Create new_release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Mqxx committed Apr 5, 2024
1 parent 7762583 commit fdb42a2
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/new_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 'New release'

on:
workflow_dispatch:
inputs:
version:
description: 'Version for new release.'
type: string
required: true

permissions:
contents: write

jobs:
release:
name: 'Draft new release (${{inputs.version}})'
runs-on: ubuntu-latest

steps:
- name: 'Setup Repository (${{github.event.repository.name}})'
uses: actions/checkout@v4

- name: 'Create new release (${{inputs.version}})'
uses: ncipollo/release-action@v1
with:
artifacts: 'binaries'
allowUpdates: false
makeLatest: true
tag: ${{inputs.version}}

0 comments on commit fdb42a2

Please sign in to comment.