From b271fa33c7efb90211620c3cb940f9c0a64d2b1f Mon Sep 17 00:00:00 2001 From: Sebastian Hartte Date: Sun, 3 Dec 2023 15:03:36 +0100 Subject: [PATCH] Decompress guide.tar directly --- .github/workflows/export_guide.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/export_guide.yml b/.github/workflows/export_guide.yml index 0f934e36ba3..977faa8b92a 100644 --- a/.github/workflows/export_guide.yml +++ b/.github/workflows/export_guide.yml @@ -77,12 +77,11 @@ jobs: environment: Production if: startsWith(github.ref, 'refs/tags/neoforge/v') steps: - - id: download - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v3 with: name: guide - name: Decompress guide tar - run: tar xf ${{steps.download.outputs.download-path}} + run: tar xf guide.tar - id: versions name: Determine Game and Mod-Version run: | @@ -118,12 +117,11 @@ jobs: environment: Production if: github.ref == 'refs/heads/main' && (github.event_name == 'workflow_dispatch' || github.event_name == 'schedule') steps: - - id: download - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v3 with: name: guide - name: Decompress guide tar - run: tar xf ${{steps.download.outputs.download-path}} + run: tar xf guide.tar # Finally, upload to S3 - uses: jakejarvis/s3-sync-action@7ed8b112447abb09f1da74f3466e4194fc7a6311 with: