mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-23 17:09:21 -05:00
24 lines
496 B
YAML
24 lines
496 B
YAML
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
name: GitHub Release
|
||
|
|
||
|
permissions: write-all
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
name: Release
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: CSchoel/release-notes-from-changelog@v1
|
||
|
- name: Create Release using GitHub CLI
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||
|
run: >
|
||
|
gh release create
|
||
|
-d
|
||
|
-F RELEASE.md
|
||
|
-t "Version $RELEASE_VERSION"
|
||
|
${GITHUB_REF#refs/*/}
|