From 86dfcbe0317659f6f7cb75880dddb00919838909 Mon Sep 17 00:00:00 2001 From: Charles Edward Gagnon Date: Thu, 1 Aug 2024 22:33:52 -0400 Subject: [PATCH] zip artifact for font files --- .github/workflows/releases.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 178f2b8..0414f58 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -12,6 +12,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Zip font files + run: | + zip -r font.zip font - name: Extract version from tag run: | VERSION=$(echo ${GITHUB_REF} | sed 's/refs\/tags\///') @@ -29,7 +32,7 @@ jobs: body: ${{ env.RELEASE_NOTES }} files: | styles.css - font/* + font.zip generate_release_notes: true fail_on_unmatched_files: true