From 2d211134891f98d44ab70a5b9e8bfc3015b9defa Mon Sep 17 00:00:00 2001 From: Kamil Zabielski <50334623+limakzi@users.noreply.github.com> Date: Thu, 29 Aug 2024 08:56:25 +0000 Subject: [PATCH] fix: Cut double-slash from build --- .github/workflows/release-bump.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-bump.yaml b/.github/workflows/release-bump.yaml index e4062ef..10479f8 100644 --- a/.github/workflows/release-bump.yaml +++ b/.github/workflows/release-bump.yaml @@ -32,7 +32,7 @@ jobs: uses: gap-actions/build-pkg-docs@v1 with: use-latex: 'true' - + - name: github -- run clean up for tarball run: | echo "::group:: cleanup version control metadata" @@ -47,14 +47,14 @@ jobs: echo "::group:: cleanup macos metadata" find . -name .DS_Store -exec rm -f {} + - + echo "::group:: remove tex aux files" find doc \( -name '*.aux' -o -name '*.bbl' -o -name '*.blg' -o -name '*.brf' -o -name '*.idx' -o -name '*.ilg' -o -name '*.ind' -o -name '*.log' -o -name '*.out' -o -name '*.pnr' -o -name '*.toc' -o -name '*.tst' \) -exec rm -f {} + - name: pkg -- build an archive run: | touch ${{ env.archive-file }} - tar -czf ${{ env.archive-file }} --exclude=${{ env.archive-file }} --transform 's,^\.,${{ env.revision }}/,' . + tar -czf ${{ env.archive-file }} --exclude=${{ env.archive-file }} --transform 's,^\.,${{ env.revision }},' . - name: github -- upload artifacts uses: softprops/action-gh-release@v2