From fce9b77607ea50b5d4217d4b9c0f2edde9c604c8 Mon Sep 17 00:00:00 2001 From: ___ Date: Mon, 23 Sep 2024 10:47:50 -0700 Subject: [PATCH 01/12] asd --- asd | 2 -- 1 file changed, 2 deletions(-) diff --git a/asd b/asd index d2fe603..9cca517 100755 --- a/asd +++ b/asd @@ -1,4 +1,2 @@ #!/usr/bin/env bash echo hey - -echo "blah: 1" > asd.yml From 29859cc4597cc02ee08b8a4a5e0720ec1ce77378 Mon Sep 17 00:00:00 2001 From: goodspark Date: Tue, 8 Oct 2024 15:14:11 -0700 Subject: [PATCH 02/12] asd --- .github/workflows/tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6e67d0a..532ae1b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,3 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - run: env | grep GITHUB_ + - run: | + export ASD="asd + zxc + 123" + + echo $ASD + echo "$ASD" From b6b7b2629ac164919f5aa08b0d9d50e29507dc2e Mon Sep 17 00:00:00 2001 From: goodspark Date: Thu, 10 Oct 2024 09:56:21 -0700 Subject: [PATCH 03/12] asd --- .github/workflows/tests.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 532ae1b..5e9fca9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,11 +10,8 @@ jobs: test: runs-on: ubuntu-latest steps: - - run: env | grep GITHUB_ - run: | - export ASD="asd - zxc - 123" - - echo $ASD - echo "$ASD" + echo asd \ + zxc \ + 123 \ + ${{ '' }} From edf2efc7b71b6ea32fcd9b69eea523a46c70b254 Mon Sep 17 00:00:00 2001 From: goodspark Date: Tue, 5 Nov 2024 20:17:24 -0800 Subject: [PATCH 04/12] asd --- .github/workflows/tests.yml | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5e9fca9..6ef4181 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,9 +9,28 @@ on: jobs: test: runs-on: ubuntu-latest + strategy: + matrix: + val: [1, 2, 3] steps: - run: | - echo asd \ - zxc \ - 123 \ - ${{ '' }} + mkdir -p a/b/c + echo asd-${{matrix.val}} > a/b/c/file.txt + + - uses: actions/upload-artifact@v4.4.3 + with: + name: asd-${{matrix.val}} + path: a/b/c/file.txt + overwrite: true + + report: + runs-on: ubuntu-latest + needs: test + steps: + - uses: actions/download-artifact@v4.1.8 + with: + pattern: asd-* + + - run: | + ls -l asd*/ + cat asd*/* From f4766f01300543612be85f7988b3ab5443655de7 Mon Sep 17 00:00:00 2001 From: goodspark Date: Thu, 7 Nov 2024 17:25:15 -0800 Subject: [PATCH 05/12] asd --- .github/workflows/tests.yml | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6ef4181..1539693 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,30 +7,7 @@ on: - main jobs: - test: + asd: runs-on: ubuntu-latest - strategy: - matrix: - val: [1, 2, 3] steps: - - run: | - mkdir -p a/b/c - echo asd-${{matrix.val}} > a/b/c/file.txt - - - uses: actions/upload-artifact@v4.4.3 - with: - name: asd-${{matrix.val}} - path: a/b/c/file.txt - overwrite: true - - report: - runs-on: ubuntu-latest - needs: test - steps: - - uses: actions/download-artifact@v4.1.8 - with: - pattern: asd-* - - - run: | - ls -l asd*/ - cat asd*/* + - run: gh --help \ No newline at end of file From 1ed2ad3012645ceac607ea0f03abd13f86c04630 Mon Sep 17 00:00:00 2001 From: goodspark Date: Mon, 25 Nov 2024 14:25:30 -0800 Subject: [PATCH 06/12] asd --- .github/workflows/tests.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1539693..9ff7783 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,5 +9,20 @@ on: jobs: asd: runs-on: ubuntu-latest + strategy: + matrix: + x: [1, 2, 3] + outputs: + x: ${{ steps.asd.outputs.x }} steps: - - run: gh --help \ No newline at end of file + - run: echo ${{ matrix.x }} + + - id: asd + run: echo x=${{ matrix.x }} >> $GITHUB_OUTPUT + if: ${{ matrix.x == 1 }} + + zxc: + runs-on: ubuntu-latest + needs: asd + steps: + - run: echo ${{ needs.asd.outputs.x }} From 43ca9b07294e2496200551a1264b932edd9300bd Mon Sep 17 00:00:00 2001 From: goodspark Date: Mon, 25 Nov 2024 14:34:04 -0800 Subject: [PATCH 07/12] asd --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9ff7783..a345f1a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,16 +13,16 @@ jobs: matrix: x: [1, 2, 3] outputs: - x: ${{ steps.asd.outputs.x }} + x-asd: ${{ steps.asd.outputs.x-asd }} steps: - run: echo ${{ matrix.x }} - id: asd - run: echo x=${{ matrix.x }} >> $GITHUB_OUTPUT + run: echo x-asd=${{ matrix.x }} >> $GITHUB_OUTPUT if: ${{ matrix.x == 1 }} zxc: runs-on: ubuntu-latest needs: asd steps: - - run: echo ${{ needs.asd.outputs.x }} + - run: echo ${{ needs.asd.outputs.x-asd }} From 6f2538f92b0dfe0e3246e28bc6c1eecc4379cc2a Mon Sep 17 00:00:00 2001 From: goodspark Date: Wed, 16 Apr 2025 07:45:05 -0700 Subject: [PATCH 08/12] asd --- .github/workflows/tests.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a345f1a..972d617 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,18 +11,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - x: [1, 2, 3] - outputs: - x-asd: ${{ steps.asd.outputs.x-asd }} + x: [0, 0, 0, 0] steps: - run: echo ${{ matrix.x }} - - - id: asd - run: echo x-asd=${{ matrix.x }} >> $GITHUB_OUTPUT - if: ${{ matrix.x == 1 }} + - run: exit ${{ matrix.x }} zxc: runs-on: ubuntu-latest + if: always() needs: asd steps: - - run: echo ${{ needs.asd.outputs.x-asd }} + - run: echo ${{ needs.asd.result }} From 848b70c47861a02b1092150c391665c90860336e Mon Sep 17 00:00:00 2001 From: goodspark Date: Wed, 16 Apr 2025 07:49:56 -0700 Subject: [PATCH 09/12] asd --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 972d617..1f7cd0f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - x: [0, 0, 0, 0] + x: [1, 0, 0, 0] steps: - run: echo ${{ matrix.x }} - run: exit ${{ matrix.x }} From 7412ba5932090c43edfa1175146ffd15c606ace0 Mon Sep 17 00:00:00 2001 From: goodspark Date: Wed, 16 Apr 2025 07:50:40 -0700 Subject: [PATCH 10/12] asd --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1f7cd0f..946e85e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,4 +21,4 @@ jobs: if: always() needs: asd steps: - - run: echo ${{ needs.asd.result }} + - run: echo ${{ needs.asd }} From e9a0908bbd0a3e1fe647c59233dc2795c16d7964 Mon Sep 17 00:00:00 2001 From: goodspark Date: Wed, 16 Apr 2025 07:51:42 -0700 Subject: [PATCH 11/12] asd --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 946e85e..304fdd5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,4 +21,4 @@ jobs: if: always() needs: asd steps: - - run: echo ${{ needs.asd }} + - run: echo '${{ toJSON(needs) }}' From 6d63eba3cde28e624c8fff2f70cce48151c6b9f2 Mon Sep 17 00:00:00 2001 From: goodspark Date: Wed, 16 Apr 2025 08:43:23 -0700 Subject: [PATCH 12/12] asd --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 304fdd5..a22fffa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: zxc: runs-on: ubuntu-latest - if: always() + if: ${{ !cancelled() }} needs: asd steps: - run: echo '${{ toJSON(needs) }}'