Skip to content

Commit

Permalink
chore: upgrade update-artifact action
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardoRodriguesF committed Mar 9, 2024
1 parent 45136fe commit b9268b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
--output=doc/quartz.1
doc/quartz.1.md
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: quartz.1
path: doc/quartz.1
Expand Down
5 changes: 5 additions & 0 deletions rollback.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
tag=$1

if [ -z "$tag" ]; then
echo "Usage: rollback.sh <tag>"
exit 1
fi

git tag --delete $tag
git reset --hard HEAD~
git push --delete origin $tag
Expand Down

0 comments on commit b9268b7

Please sign in to comment.