From 2752f30f217c54598fa21957f953d2654926e55c Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sun, 11 Aug 2024 05:27:24 +0300 Subject: [PATCH] ci: Fix name conflict in artifacts --- .github/workflows/main.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cdbd6ccd0..2a840879e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,15 +69,13 @@ jobs: - name: Publish artifacts uses: actions/upload-artifact@v4 with: - name: TriliumNextNotes ${{ matrix.os.name }} ${{ matrix.arch }} + name: TriliumNextNotes ${{ matrix.os.name }} ${{ matrix.arch }}.zip path: upload/*.zip - overwrite: true - name: Publish installer artifacts uses: actions/upload-artifact@v4 with: - name: TriliumNextNotes ${{ matrix.os.name }} ${{ matrix.arch }} + name: TriliumNextNotes ${{ matrix.os.name }} ${{ matrix.arch }}.${{matrix.os.extension}} path: upload/*.${{ matrix.os.extension }} - overwrite: true build_linux_server-x64: name: Build Linux Server x86_64 runs-on: ubuntu-latest @@ -104,4 +102,3 @@ jobs: with: name: TriliumNextNotes linux server x64 path: upload/TriliumNextNotes-linux-x64-${{ github.ref_name }}.tar.xz - overwrite: true