From 96cc7fdcf577dbbc840c8cb05dfe57d869551ca0 Mon Sep 17 00:00:00 2001 From: Marco Fontani Date: Sat, 21 Jan 2023 17:35:09 +0100 Subject: [PATCH] ci: use tstdin-os-arch.xz ... so that hopefully ubi[1] DWIMs. [1]: https://github.com/houseabsolute/ubi/ --- .github/workflows/tag.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 5585af6..4b714c7 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -24,7 +24,7 @@ jobs: GOARCH: amd64 - run: ./tstdin -help - run: sh -c '(echo foo ; sleep 1; echo bar ; sleep 1 ; echo baz) | ./tstdin' - - run: xz --compress --stdout tstdin > tstdin.linux.amd64.xz + - run: xz --compress --stdout tstdin > tstdin-linux-amd64.xz # Build #2: windows/amd64 - run: ./.dev/build-static.sh env: @@ -36,20 +36,20 @@ jobs: env: GOOS: darwin GOARCH: amd64 - - run: xz --compress --stdout tstdin > tstdin.darwin.amd64.xz + - run: xz --compress --stdout tstdin > tstdin-darwin-amd64.xz # Upload artifacts... - uses: actions/upload-artifact@master with: - name: tstdin.linux.amd64.xz - path: tstdin.linux.amd64.xz + name: tstdin-linux-amd64.xz + path: tstdin-linux-amd64.xz - uses: actions/upload-artifact@master with: name: tstdin.exe path: tstdin.exe - uses: actions/upload-artifact@master with: - name: tstdin.darwin.amd64.xz - path: tstdin.darwin.amd64.xz + name: tstdin-darwin-amd64.xz + path: tstdin-darwin-amd64.xz release: needs: [build] @@ -70,8 +70,8 @@ jobs: strategy: matrix: file: - - tstdin.linux.amd64.xz - - tstdin.darwin.amd64.xz + - tstdin-linux-amd64.xz + - tstdin-darwin-amd64.xz runs-on: ubuntu-20.04 steps: - uses: actions/download-artifact@master