Skip to content

Commit

Permalink
Fix action to create release
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
dail8859 authored Jun 2, 2023
1 parent 562f89c commit d57f211
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Release
name: Create Release

on:
workflow_dispatch:
Expand All @@ -14,6 +14,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
token: ${{ secrets.CREATE_RELEASE_TOKEN }}

- name: Update App Version
run: |
Expand All @@ -28,7 +30,7 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add src/Version.pri deploy/linux/com.github.dail8859.NotepadNext.metainfo.xml
git commit -m "Update version to v${{ github.event.inputs.version }}"
git commit -m "v${{ github.event.inputs.version }} release"
- name: Tag commit
run: |
Expand Down

0 comments on commit d57f211

Please sign in to comment.