1
0
mirror of synced 2026-01-05 12:07:35 -05:00

temp remove zstd for self-hosted runners (#22459)

This commit is contained in:
Grace Park
2021-10-28 10:58:57 -07:00
committed by GitHub
parent 99312299e9
commit cac72dbd36
2 changed files with 1 additions and 6 deletions

View File

@@ -127,10 +127,6 @@ jobs:
app.json \
Procfile
ls -lh app.tar
zstd -q app.tar -o app.tar.zst
ls -lh app.tar.zst
# Upload only the files needed to run this application.
# We are not willing to trust the rest (e.g. script/) for the remainder
# of the deployment process.
@@ -138,4 +134,4 @@ jobs:
uses: actions/upload-artifact@27121b0bdffd731efa15d66772be8dc71245d074
with:
name: pr_build
path: app.tar.zst
path: app.tar

View File

@@ -325,7 +325,6 @@ jobs:
- name: Extract user-changes to temp directory
run: |
zstd -d -q $RUNNER_TEMP/app.tar.zst -o $RUNNER_TEMP/app.tar
mkdir $RUNNER_TEMP/app
tar -x --file=$RUNNER_TEMP/app.tar -C "$RUNNER_TEMP/app/"