Skip to content

Commit 087c8df

Browse files
committed
Merge branch 'master' into experimental
2 parents 251351b + bc8d358 commit 087c8df

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/blob-build.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- master
7+
- experimental
78

89
jobs:
910
build:
@@ -28,10 +29,22 @@ jobs:
2829
- name: Rename jar file
2930
run: mv build/libs/MobCapturer-*.jar build/libs/MobCapturer.jar
3031

31-
- name: Upload to Blob Builds
32+
- name: Upload to Blob Builds (Dev)
3233
uses: WalshyDev/blob-builds/gh-action@main
34+
if: github.ref == 'refs/heads/master'
3335
with:
3436
project: MobCapturer
37+
releaseChannel: Dev
38+
file: ./build/libs/MobCapturer.jar
39+
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
40+
releaseNotes: ${{ github.event.head_commit.message }}
41+
42+
- name: Upload to Blob Builds (Experimetal)
43+
uses: WalshyDev/blob-builds/gh-action@main
44+
if: github.ref == 'refs/heads/experimental'
45+
with:
46+
project: MobCapturer
47+
releaseChannel: Experimental
3548
file: ./build/libs/MobCapturer.jar
3649
apiToken: ${{ secrets.BLOB_BUILDS_API_TOKEN }}
3750
releaseNotes: ${{ github.event.head_commit.message }}

0 commit comments

Comments
 (0)