From a6c53915486d1cab95fc0998c3e4084be4f3114b Mon Sep 17 00:00:00 2001 From: Kasper Peeters Date: Fri, 25 Oct 2024 09:33:05 +0100 Subject: [PATCH] Fix tarball script. --- .github/workflows/tarball.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index ecc0880eac..a08bd6b325 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -37,13 +37,13 @@ jobs: echo "VERSION=$VERSION" >> $GITHUB_ENV mkdir -p submodules cd submodules - git clone https://github.com/kpeeters/MicroTeX.git microtex + git clone -b kpeeters/cadabra https://github.com/kpeeters/MicroTeX.git microtex cd ../.. - tar zcf cadabra2-${VERSION}-inclusive.tar.gz --exclude ".git" cadabra2 + tar zcf cadabra2-${VERSION}-source-inclusive.tar.gz --exclude ".git" cadabra2 - name: Upload tarball to assets run: | - gh release upload "${{ env.VERSION }}" ${{ github.workspace }}/../cadabra2-${VERSION}-inclusive.tar.gz --clobber + gh release upload "${{ env.VERSION }}" ${{ github.workspace }}/../cadabra2-${VERSION}-source-inclusive.tar.gz --clobber env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}