Compare commits
No commits in common. "cc6668827d20f58973a9195721ea033064e68906" and "728e451e66fbdfb89be7366fa1cf485f748763c5" have entirely different histories.
cc6668827d
...
728e451e66
|
@ -38,9 +38,8 @@ jobs:
|
|||
sed -i "/version/c\version = \"${VERSION#v}\"" typst.toml
|
||||
git add typst.toml
|
||||
git commit -m "chore: bump release version to $VERSION"
|
||||
git push origin main
|
||||
echo "::endgroup::"
|
||||
echo "::group::{Tag commit}"
|
||||
git tag -m "Release" "${VERSION}"
|
||||
git push origin "${VERSION}"
|
||||
git push "${VERSION}"
|
||||
echo "::endgroup::"
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
name: Create Release
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
tags:
|
||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||
- v*.*.*
|
||||
jobs:
|
||||
build:
|
||||
name: Check Template and Build example
|
||||
|
|
Loading…
Reference in New Issue