Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down