From 25ba4c5d042ffd16b38f936dfb656c182e5c4a46 Mon Sep 17 00:00:00 2001 From: Matheus Afonso Martins Moreira Date: Sat, 21 Sep 2024 04:34:47 -0300 Subject: [PATCH] github/workflows: prepend config name to artifact Prepend the name of the current configuration to the name of the uploaded artifact, thereby enabling the upload of all artifacts generated by the entire build matrix. Neat. --- .github/workflows/lone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lone.yml b/.github/workflows/lone.yml index 76185d9..60e779d 100644 --- a/.github/workflows/lone.yml +++ b/.github/workflows/lone.yml @@ -74,7 +74,7 @@ jobs: - name: Upload lone executable artifact uses: actions/upload-artifact@v4 with: - name: lone + name: ${{ matrix.env.CONFIGURATION }}-lone path: build/${{ matrix.env.CONFIGURATION }}/lone compression-level: 9 overwrite: false