From 0ba61b0521739f114181c14def9abef0dd3dea49 Mon Sep 17 00:00:00 2001 From: Eric Wyles <23637493+ericwyles@users.noreply.github.com> Date: Thu, 20 Jun 2024 10:23:05 -0500 Subject: [PATCH 1/2] chore: add architecture to save logs suffix --- .github/workflows/tag-and-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tag-and-release.yaml b/.github/workflows/tag-and-release.yaml index 5fcb63be..3b9b7d99 100644 --- a/.github/workflows/tag-and-release.yaml +++ b/.github/workflows/tag-and-release.yaml @@ -57,4 +57,4 @@ jobs: if: always() uses: defenseunicorns/uds-common/.github/actions/save-logs@61450a210fd16cf14157ee417f9682a4664c05e5 # v0.6.0 with: - suffix: ${{ matrix.flavor }}-${{ github.run_id }}-${{ github.run_attempt }} + suffix: ${{ matrix.flavor }}-${{ matrix.architecture }}-${{ github.run_id }}-${{ github.run_attempt }} From f005504e53330dcabe409dc2107c187ff0a92139 Mon Sep 17 00:00:00 2001 From: Eric Wyles <23637493+ericwyles@users.noreply.github.com> Date: Thu, 20 Jun 2024 12:27:44 -0500 Subject: [PATCH 2/2] dont need UDS_ARCHITECTURE anymore because it will default to system arch --- .github/workflows/tag-and-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tag-and-release.yaml b/.github/workflows/tag-and-release.yaml index 3b9b7d99..f5dbc8f6 100644 --- a/.github/workflows/tag-and-release.yaml +++ b/.github/workflows/tag-and-release.yaml @@ -47,7 +47,7 @@ jobs: ghToken: ${{ secrets.GITHUB_TOKEN }} - name: Publish Package - run: UDS_ARCHITECTURE=${{ matrix.architecture }} uds run -f tasks/publish.yaml package --set FLAVOR=${{ matrix.flavor }} + run: uds run -f tasks/publish.yaml package --set FLAVOR=${{ matrix.flavor }} - name: Debug Output if: ${{ always() }}