aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-11-10 08:50:49 +0100
committerChocobozzz <me@florianbigard.com>2020-11-10 08:50:49 +0100
commit79389bffd6cbd5d3a7d2a4b61412f5f8e076ed34 (patch)
tree2a33d293649176c03eb9b32b1a2ec647b900bd46 /.github/workflows/test.yml
parentc220bd05994aa4807927c8dfa71ccd2c7b70476b (diff)
downloadPeerTube-79389bffd6cbd5d3a7d2a4b61412f5f8e076ed34.tar.gz
PeerTube-79389bffd6cbd5d3a7d2a4b61412f5f8e076ed34.tar.zst
PeerTube-79389bffd6cbd5d3a7d2a4b61412f5f8e076ed34.zip
Fix deprecated action command
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8b605847e..7db871149 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -59,7 +59,7 @@ jobs:
59 tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz 59 tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz
60 mkdir -p $HOME/bin 60 mkdir -p $HOME/bin
61 cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin 61 cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin
62 echo "::add-path::$HOME/bin" 62 echo "$HOME/bin" >> $GITHUB_PATH
63 63
64 - name: Cache Node.js modules 64 - name: Cache Node.js modules
65 uses: actions/cache@v2 65 uses: actions/cache@v2
@@ -88,7 +88,7 @@ jobs:
88 - name: Set env test variable (schedule) 88 - name: Set env test variable (schedule)
89 if: github.event_name != 'schedule' 89 if: github.event_name != 'schedule'
90 run: | 90 run: |
91 echo "::set-env name=DISABLE_HTTP_IMPORT_TESTS::true" 91 echo "DISABLE_HTTP_IMPORT_TESTS=true" >> $GITHUB_ENV
92 92
93 - name: Run Test 93 - name: Run Test
94 # external-plugins tests only run on schedule 94 # external-plugins tests only run on schedule