We have to make the tar output directory manually
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
e6dc6b93a7
commit
3d48168394
1 changed files with 4 additions and 2 deletions
|
@ -10,7 +10,7 @@ inputs:
|
||||||
runs:
|
runs:
|
||||||
using: composite
|
using: composite
|
||||||
steps:
|
steps:
|
||||||
- name: Download current version for its old bundles
|
- name: Download release tarball
|
||||||
id: current_download
|
id: current_download
|
||||||
uses: robinraju/release-downloader@a96f54c1b5f5e09e47d9504526e96febd949d4c2 # v1
|
uses: robinraju/release-downloader@a96f54c1b5f5e09e47d9504526e96febd949d4c2 # v1
|
||||||
with:
|
with:
|
||||||
|
@ -25,7 +25,9 @@ runs:
|
||||||
|
|
||||||
- name: Extract tarball
|
- name: Extract tarball
|
||||||
shell: bash
|
shell: bash
|
||||||
run: tar xvzf element-*.tar.gz -C webapp --strip-components=1
|
run: |
|
||||||
|
mkdir webapp
|
||||||
|
tar xvzf element-*.tar.gz -C webapp --strip-components=1
|
||||||
working-directory: ${{ runner.temp }}/download-verify-element-tarball
|
working-directory: ${{ runner.temp }}/download-verify-element-tarball
|
||||||
|
|
||||||
- name: Move webapp to out-file-path
|
- name: Move webapp to out-file-path
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue