Skip to content

Commit

Permalink
chore: Update github actions to use gh-cli isntead of hub
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacobomara901 authored and mblenk committed Jul 16, 2024
1 parent 74daf0a commit 4a629a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main
tags:
-'v*'
- 'v*'

jobs:
release:
Expand All @@ -23,6 +23,6 @@ jobs:
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "FILENAME=$FILENAME" >> $GITHUB_ENV
- name: 'Create Release'
run: hub release create ${{ env.VERSION }} -m ${{ env.VERSION }} -a ${{ env.FILENAME }}
run: gh release create ${{ env.VERSION }} ${{ env.FILENAME }} -t ${{ env.VERSION }} -n ""
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4a629a7

Please sign in to comment.