mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-23 00:59:22 -05:00
CI fix
This commit is contained in:
parent
17882e3d62
commit
0777e5b9f8
2 changed files with 24 additions and 4 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -7,10 +7,7 @@ on:
|
|||
|
||||
name: CI
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
permissions: write-all
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
23
.github/workflows/github-release.yml
vendored
Normal file
23
.github/workflows/github-release.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
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/*/}
|
Loading…
Add table
Reference in a new issue