|
96 | 96 |
|
97 | 97 | - name: Make Tarball
|
98 | 98 | run: |
|
99 |
| - tar -zcvf quarto-${{needs.configure.outputs.version}}.tar.gz * |
| 99 | + tar --owner=root --group=root -zcvf quarto-${{needs.configure.outputs.version}}.tar.gz * |
100 | 100 |
|
101 | 101 | - name: Upload Artifact
|
102 | 102 | uses: actions/upload-artifact@v3
|
@@ -127,7 +127,7 @@ jobs:
|
127 | 127 | run: |
|
128 | 128 | pushd package/
|
129 | 129 | mv pkg-working quarto-${{needs.configure.outputs.version}}
|
130 |
| - tar -cvf quarto-${{needs.configure.outputs.version}}-linux-amd64.tar quarto-${{needs.configure.outputs.version}} |
| 130 | + tar --owner=root --group=root -cvf quarto-${{needs.configure.outputs.version}}-linux-amd64.tar quarto-${{needs.configure.outputs.version}} |
131 | 131 | gzip quarto-${{needs.configure.outputs.version}}-linux-amd64.tar
|
132 | 132 | mv quarto-${{needs.configure.outputs.version}} pkg-working
|
133 | 133 | popd
|
@@ -161,7 +161,7 @@ jobs:
|
161 | 161 | run: |
|
162 | 162 | pushd package/
|
163 | 163 | mv pkg-working quarto-${{needs.configure.outputs.version}}
|
164 |
| - tar -cvf quarto-${{needs.configure.outputs.version}}-linux-arm64.tar quarto-${{needs.configure.outputs.version}} |
| 164 | + tar --owner=root --group=root -cvf quarto-${{needs.configure.outputs.version}}-linux-arm64.tar quarto-${{needs.configure.outputs.version}} |
165 | 165 | gzip quarto-${{needs.configure.outputs.version}}-linux-arm64.tar
|
166 | 166 | mv quarto-${{needs.configure.outputs.version}} pkg-working
|
167 | 167 | popd
|
@@ -206,7 +206,7 @@ jobs:
|
206 | 206 | run: |
|
207 | 207 | pushd package/
|
208 | 208 | mv pkg-working quarto-${{needs.configure.outputs.version}}
|
209 |
| - tar -cvf quarto-${{needs.configure.outputs.version}}-linux-rhel7-amd64.tar quarto-${{needs.configure.outputs.version}} |
| 209 | + tar --owner=root --group=root -cvf quarto-${{needs.configure.outputs.version}}-linux-rhel7-amd64.tar quarto-${{needs.configure.outputs.version}} |
210 | 210 | gzip quarto-${{needs.configure.outputs.version}}-linux-rhel7-amd64.tar
|
211 | 211 | mv quarto-${{needs.configure.outputs.version}} pkg-working
|
212 | 212 | popd
|
@@ -291,7 +291,8 @@ jobs:
|
291 | 291 | tar -zxf quarto-${{needs.configure.outputs.version}}-linux-amd64.tar.gz
|
292 | 292 | echo "$GITHUB_WORKSPACE/quarto-${{needs.configure.outputs.version}}/bin" >> $GITHUB_PATH
|
293 | 293 | - run: |
|
294 |
| - ls -R |
| 294 | + tar -tzvf quarto-${{needs.configure.outputs.version}}-linux-amd64.tar.gz | head |
| 295 | + ls -lR |
295 | 296 | echo $PATH
|
296 | 297 | quarto check
|
297 | 298 | quarto --paths
|
@@ -440,7 +441,8 @@ jobs:
|
440 | 441 | - run: |
|
441 | 442 | tar -zxf quarto-${{needs.configure.outputs.version}}-macos.tar.gz
|
442 | 443 | echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
|
443 |
| - - run: ls -R |
| 444 | + - run: tar -tzvf ${{needs.configure.outputs.version}}-macos.tar.gz | head |
| 445 | + - run: ls -lR |
444 | 446 | - run: echo $PATH
|
445 | 447 | - run: |
|
446 | 448 | quarto check
|
|
0 commit comments