Update tar action for workflow
This commit is contained in:
parent
752d1e819c
commit
5e6095a150
1 changed files with 4 additions and 4 deletions
8
.github/workflows/release.yaml
vendored
8
.github/workflows/release.yaml
vendored
|
@ -67,7 +67,7 @@ jobs:
|
||||||
|
|
||||||
- name: Post-Build | Compress [Features; -nix]
|
- name: Post-Build | Compress [Features; -nix]
|
||||||
if: matrix.features != '' && !contains(matrix.os, 'windows')
|
if: matrix.features != '' && !contains(matrix.os, 'windows')
|
||||||
uses: a7ul/tar-action@v1.1.0
|
uses: a7ul/tar-action@v1.1.2
|
||||||
with:
|
with:
|
||||||
command: c
|
command: c
|
||||||
cwd: ./target/${{ matrix.target }}/release/
|
cwd: ./target/${{ matrix.target }}/release/
|
||||||
|
@ -75,7 +75,7 @@ jobs:
|
||||||
outPath: worlds-history-sim-rs-${{ matrix.target }}-${{ matrix.features }}.tar.gz
|
outPath: worlds-history-sim-rs-${{ matrix.target }}-${{ matrix.features }}.tar.gz
|
||||||
- name: Post-Build | Compress [Minimal; -nix]
|
- name: Post-Build | Compress [Minimal; -nix]
|
||||||
if: matrix.features == '' && !contains(matrix.os, 'windows')
|
if: matrix.features == '' && !contains(matrix.os, 'windows')
|
||||||
uses: a7ul/tar-action@v1.1.0
|
uses: a7ul/tar-action@v1.1.2
|
||||||
with:
|
with:
|
||||||
command: c
|
command: c
|
||||||
cwd: ./target/${{ matrix.target }}/release/
|
cwd: ./target/${{ matrix.target }}/release/
|
||||||
|
@ -84,7 +84,7 @@ jobs:
|
||||||
|
|
||||||
- name: Post-Build | Compress [Features; Windows]
|
- name: Post-Build | Compress [Features; Windows]
|
||||||
if: matrix.features != '' && contains(matrix.os, 'windows')
|
if: matrix.features != '' && contains(matrix.os, 'windows')
|
||||||
uses: a7ul/tar-action@v1.1.0
|
uses: a7ul/tar-action@v1.1.2
|
||||||
with:
|
with:
|
||||||
command: c
|
command: c
|
||||||
cwd: ./target/${{ matrix.target }}/release/
|
cwd: ./target/${{ matrix.target }}/release/
|
||||||
|
@ -92,7 +92,7 @@ jobs:
|
||||||
outPath: worlds-history-sim-rs-${{ matrix.target }}-${{ matrix.features }}.tar.gz
|
outPath: worlds-history-sim-rs-${{ matrix.target }}-${{ matrix.features }}.tar.gz
|
||||||
- name: Post-Build | Compress [Minimal; Windows]
|
- name: Post-Build | Compress [Minimal; Windows]
|
||||||
if: matrix.features == '' && contains(matrix.os, 'windows')
|
if: matrix.features == '' && contains(matrix.os, 'windows')
|
||||||
uses: a7ul/tar-action@v1.1.0
|
uses: a7ul/tar-action@v1.1.2
|
||||||
with:
|
with:
|
||||||
command: c
|
command: c
|
||||||
cwd: ./target/${{ matrix.target }}/release/
|
cwd: ./target/${{ matrix.target }}/release/
|
||||||
|
|
Loading…
Reference in a new issue