Compare commits
2 Commits
04a6512a6b
...
b2bd5af0a6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2bd5af0a6 | ||
|
|
65d85b6d5d |
2
.github/workflows/admin-web-tests.yml
vendored
2
.github/workflows/admin-web-tests.yml
vendored
@@ -10,7 +10,7 @@ on:
|
||||
jobs:
|
||||
test:
|
||||
name: Test
|
||||
runs-on: nas-runner
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
defaults:
|
||||
run:
|
||||
|
||||
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
||||
# ── Path filter — determines which downstream jobs run ──
|
||||
changes:
|
||||
name: Detect Changes
|
||||
runs-on: nas-runner
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
admin-web: ${{ steps.filter.outputs.admin-web }}
|
||||
youtube-worker: ${{ steps.filter.outputs.youtube-worker }}
|
||||
@@ -47,7 +47,7 @@ jobs:
|
||||
name: YouTube Worker
|
||||
needs: changes
|
||||
if: needs.changes.outputs.youtube-worker == 'true'
|
||||
runs-on: nas-runner
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: youtube-worker
|
||||
@@ -78,7 +78,7 @@ jobs:
|
||||
!contains(needs.*.result, 'failure') &&
|
||||
(needs.changes.outputs.supabase-functions == 'true' ||
|
||||
needs.changes.outputs.youtube-worker == 'true')
|
||||
runs-on: nas-runner
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
|
||||
6
.github/workflows/docker-admin-web.yml
vendored
6
.github/workflows/docker-admin-web.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
semantic-release:
|
||||
name: Semantic Release
|
||||
needs: admin-web-test
|
||||
runs-on: nas-runner
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 5
|
||||
defaults:
|
||||
run:
|
||||
@@ -67,7 +67,7 @@ jobs:
|
||||
name: Build & Push Docker Image
|
||||
needs: semantic-release
|
||||
if: needs.semantic-release.outputs.released == 'true' || github.event_name == 'workflow_dispatch'
|
||||
runs-on: nas-runner
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 10
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -101,7 +101,7 @@ jobs:
|
||||
name: Deploy to Portainer
|
||||
needs: [semantic-release, build-and-push]
|
||||
if: needs.semantic-release.outputs.released == 'true' || github.event_name == 'workflow_dispatch'
|
||||
runs-on: nas-runner
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
23
.github/workflows/pr-iphone-deploy.yml
vendored
23
.github/workflows/pr-iphone-deploy.yml
vendored
@@ -8,9 +8,6 @@ on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
types: [opened, synchronize, reopened]
|
||||
paths:
|
||||
- 'tabatago-swift/**'
|
||||
- '.github/workflows/pr-iphone-deploy.yml'
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@@ -18,8 +15,28 @@ permissions:
|
||||
|
||||
jobs:
|
||||
|
||||
# ── Path filter — only run if tabatago-swift changed ──
|
||||
changes:
|
||||
name: Detect Changes
|
||||
runs-on: nas-runner
|
||||
outputs:
|
||||
tabatago-swift: ${{ steps.filter.outputs.tabatago-swift }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- uses: dorny/paths-filter@v3
|
||||
id: filter
|
||||
with:
|
||||
filters: |
|
||||
tabatago-swift:
|
||||
- 'tabatago-swift/**'
|
||||
|
||||
build-deploy:
|
||||
name: Build & Deploy to iPhone (WiFi/USB)
|
||||
needs: changes
|
||||
if: needs.changes.outputs.tabatago-swift == 'true'
|
||||
runs-on: macos
|
||||
timeout-minutes: 20
|
||||
|
||||
|
||||
Reference in New Issue
Block a user