Version number must change as well as fonts must change to create a release. Otherwise, just a commit.

This commit is contained in:
Matt Troutman 2024-07-22 21:48:53 -05:00
parent 76e03cd93e
commit 74dd7a12f9
Signed by: trtmn
SSH Key Fingerprint: SHA256:cgYdsbnbA0S6X4anVowEAntjEpGV7nMyk2NW6ZYoNjE

View File

@ -23,13 +23,14 @@ jobs:
run: |
VERSION=$(grep 'Version:' clique.sfd | awk '{print $2}' | sed 's/^0*//')
echo "VERSION=$VERSION" >> $GITHUB_ENV
PREVIOUS_VERSION=$(cat .github/workflows/previous_version.txt || echo "0")
mkdir -p .github/metadata
PREVIOUS_VERSION=$(cat .github/metadata/previous_version.txt || echo "0")
if [ "$VERSION" != "$PREVIOUS_VERSION" ]; then
echo "changed=true" >> $GITHUB_ENV
echo $VERSION > .github/workflows/previous_version.txt
echo $VERSION > .github/metadata/previous_version.txt
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
git add .github/workflows/previous_version.txt
git add .github/metadata/previous_version.txt
git commit -m "Update version to $VERSION"
git push
echo "::set-output name=changed::true"
@ -41,13 +42,14 @@ jobs:
id: fonts_change
run: |
FONTS_HASH=$(find ./generated\ fonts/ -type f -exec md5sum {} \; | md5sum)
PREVIOUS_FONTS_HASH=$(cat .github/workflows/previous_fonts_hash.txt || echo "0")
mkdir -p .github/metadata
PREVIOUS_FONTS_HASH=$(cat .github/metadata/previous_fonts_hash.txt || echo "0")
if [ "$FONTS_HASH" != "$PREVIOUS_FONTS_HASH" ]; then
echo "changed=true" >> $GITHUB_ENV
echo $FONTS_HASH > .github/workflows/previous_fonts_hash.txt
echo $FONTS_HASH > .github/metadata/previous_fonts_hash.txt
git config --global user.email "action@github.com"
git config --global user.name "GitHub Action"
git add .github/workflows/previous_fonts_hash.txt
git add .github/metadata/previous_fonts_hash.txt
git commit -m "Update fonts hash"
git push
echo "::set-output name=changed::true"