Compare commits

..

No commits in common. "cc6668827d20f58973a9195721ea033064e68906" and "728e451e66fbdfb89be7366fa1cf485f748763c5" have entirely different histories.

2 changed files with 4 additions and 3 deletions

View File

@ -38,9 +38,8 @@ jobs:
sed -i "/version/c\version = \"${VERSION#v}\"" typst.toml sed -i "/version/c\version = \"${VERSION#v}\"" typst.toml
git add typst.toml git add typst.toml
git commit -m "chore: bump release version to $VERSION" git commit -m "chore: bump release version to $VERSION"
git push origin main
echo "::endgroup::" echo "::endgroup::"
echo "::group::{Tag commit}" echo "::group::{Tag commit}"
git tag -m "Release" "${VERSION}" git tag -m "Release" "${VERSION}"
git push origin "${VERSION}" git push "${VERSION}"
echo "::endgroup::" echo "::endgroup::"

View File

@ -1,8 +1,10 @@
name: Create Release name: Create Release
on: on:
push: push:
branches:
- main
tags: tags:
- 'v[0-9]+.[0-9]+.[0-9]+' - v*.*.*
jobs: jobs:
build: build:
name: Check Template and Build example name: Check Template and Build example