chore: workflows
This commit is contained in:
1
.github/workflows/codeql-analysis.yml
vendored
1
.github/workflows/codeql-analysis.yml
vendored
@@ -22,6 +22,7 @@ on:
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
||||
1
.github/workflows/desktop.dev.yml
vendored
1
.github/workflows/desktop.dev.yml
vendored
@@ -13,6 +13,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
|
||||
2
.github/workflows/mobile.build-dev.yml
vendored
2
.github/workflows/mobile.build-dev.yml
vendored
@@ -10,6 +10,7 @@ on:
|
||||
|
||||
jobs:
|
||||
android:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
defaults:
|
||||
run:
|
||||
working-directory: packages/mobile
|
||||
@@ -50,6 +51,7 @@ jobs:
|
||||
name: dev.apk
|
||||
path: android/app/build/outputs/apk/dev/release/app-dev-release.apk
|
||||
ios:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
defaults:
|
||||
run:
|
||||
working-directory: packages/mobile
|
||||
|
||||
2
.github/workflows/mobile.build-prod.yml
vendored
2
.github/workflows/mobile.build-prod.yml
vendored
@@ -4,6 +4,7 @@ on: [workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
android:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
defaults:
|
||||
run:
|
||||
working-directory: packages/mobile
|
||||
@@ -48,6 +49,7 @@ jobs:
|
||||
name: release.aab
|
||||
path: android/app/build/outputs/bundle/prodRelease/app-prod-release.aab
|
||||
ios:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
defaults:
|
||||
run:
|
||||
working-directory: packages/mobile
|
||||
|
||||
1
.github/workflows/mobile.e2e.yml
vendored
1
.github/workflows/mobile.e2e.yml
vendored
@@ -2,7 +2,6 @@ name: Mobile e2e
|
||||
|
||||
on: [workflow_dispatch]
|
||||
|
||||
|
||||
jobs:
|
||||
android:
|
||||
defaults:
|
||||
|
||||
2
.github/workflows/web.beta.yml
vendored
2
.github/workflows/web.beta.yml
vendored
@@ -10,6 +10,7 @@ on:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
@@ -26,6 +27,7 @@ jobs:
|
||||
run: yarn test
|
||||
|
||||
deploy:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
runs-on: ubuntu-latest
|
||||
needs: test
|
||||
|
||||
|
||||
3
.github/workflows/web.dev.yml
vendored
3
.github/workflows/web.dev.yml
vendored
@@ -14,6 +14,7 @@ on:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
@@ -31,6 +32,7 @@ jobs:
|
||||
|
||||
|
||||
deploy:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@@ -78,6 +80,7 @@ jobs:
|
||||
wait-for-service-stability: true
|
||||
|
||||
notify_discord:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
needs: deploy
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
4
.github/workflows/web.prod.yml
vendored
4
.github/workflows/web.prod.yml
vendored
@@ -13,6 +13,7 @@ on:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
@@ -29,7 +30,7 @@ jobs:
|
||||
run: yarn test
|
||||
|
||||
deploy:
|
||||
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
needs: test
|
||||
@@ -76,6 +77,7 @@ jobs:
|
||||
wait-for-service-stability: true
|
||||
|
||||
notify_discord:
|
||||
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
||||
needs: deploy
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Reference in New Issue
Block a user