diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index eb0e27a4..5def0556 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -44,28 +44,28 @@ jobs: id: version - name: Upload Aroma version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Aroma path: out/Aroma/* if-no-files-found: warn - name: Upload Aroma debug version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Aroma-DEBUG path: out/Aroma-DEBUG/* if-no-files-found: error - name: Upload Channel version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Channel path: out/Channel/* if-no-files-found: warn - name: Upload Channel debug version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Channel-DEBUG path: out/Channel-DEBUG/* diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 80e7e7b6..e4a52b35 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -30,13 +30,13 @@ jobs: docker build . -t builder docker run --rm -v ${PWD}:/project builder python3 build.py - name: Upload Aroma version - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-Aroma-DEBUG path: out/Aroma-DEBUG/* if-no-files-found: error - name: Upload Channel version - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-Channel-DEBUG path: out/Channel-DEBUG/*