summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2023-05-30 20:17:24 +0300
committerRasmus Andersson <rasmus@notion.se>2023-05-30 20:17:24 +0300
commit899eca64b7c16ab1d9034e2f9b5372f7f7fe2bea (patch)
tree65a921c8b2b4bb3b942db1036630f2e3edba1e09 /.github
parent9c484364cdc6c90254d252ac90986e2f49698763 (diff)
downloadinter-899eca64b7c16ab1d9034e2f9b5372f7f7fe2bea.tar.xz
tooling: revert "extras" zip distribution
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-fonts.yml18
1 files changed, 5 insertions, 13 deletions
diff --git a/.github/workflows/build-fonts.yml b/.github/workflows/build-fonts.yml
index 01eb608f4..38089b7fc 100644
--- a/.github/workflows/build-fonts.yml
+++ b/.github/workflows/build-fonts.yml
@@ -71,21 +71,15 @@ jobs:
- name: make zip
run: |
ZIP=Inter-${{ env.inter_version }}.zip
- ZIP_EXTRAS=Inter-${{ env.inter_version }}-extras.zip
echo "inter_zip=$ZIP" >> $GITHUB_ENV
- echo "inter_zip_extras=$ZIP_EXTRAS" >> $GITHUB_ENV
- make -j zip zip_extras
- mv build/release/*-extras.zip "$ZIP_EXTRAS"
- mv build/release/*.zip "$ZIP"
+ make -j zip
+ mv build/release/Inter*.zip "$ZIP"
- name: Upload archive (unless tag)
if: ${{ ! startsWith(github.ref, 'refs/tags/v') }}
uses: actions/upload-artifact@v3
with:
- name: "${{ env.inter_zip }}"
- path: |
- ${{ env.inter_zip }}
- ${{ env.inter_zip_extras }}
+ path: ${{ env.inter_zip }}
retention-days: 1
- name: Create release (if tag)
@@ -94,7 +88,5 @@ jobs:
with:
prerelease: true
name: "${{ env.inter_version }}"
- body: "This release was automatically created"
- files: |
- ${{ env.inter_zip }}
- ${{ env.inter_zip_extras }}
+ body: "This release was created automatically"
+ files: ${{ env.inter_zip }}