Skip to content

Commit 0c9ea18

Browse files
committed
refactor: reduce retention days for build artifacts and remove security audit steps
1 parent dedd4a2 commit 0c9ea18

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
backend: ${{ steps.changes.outputs.backend }}
2929
frontend: ${{ steps.changes.outputs.frontend }}
3030
tauri: ${{ steps.changes.outputs.tauri }}
31-
skip_ci: ${{ steps.changes.outputs.skip_ci }}
31+
general: ${{ steps.changes.outputs.general }}
32+
gha: ${{ steps.changes.outputs.gha }}
3233
steps:
3334
- name: Checkout Repository
3435
uses: actions/checkout@v4
@@ -55,19 +56,21 @@ jobs:
5556
- 'src-tauri/tauri.conf.json'
5657
- 'src-tauri/capabilities/**'
5758
- 'src-tauri/icons/**'
58-
skip_ci:
59+
general:
5960
- '**.md'
6061
- '.gitignore'
6162
- 'LICENSE'
6263
- 'docs/**'
64+
gha:
6365
- '.github/**'
66+
6467
6568
# Combined Full Stack Test and Build
6669
full-stack-test-build:
6770
name: Full Stack Test & Build
6871
runs-on: ${{ matrix.os }}
6972
needs: changes
70-
if: needs.changes.outputs.skip_ci == 'false' && (needs.changes.outputs.backend == 'true' || needs.changes.outputs.frontend == 'true' || needs.changes.outputs.tauri == 'true')
73+
if: needs.changes.outputs.general == 'false' && (needs.changes.outputs.backend == 'true' || needs.changes.outputs.frontend == 'true' || needs.changes.outputs.tauri == 'true' || needs.changes.outputs.gha == 'true')
7174

7275
strategy:
7376
fail-fast: false

0 commit comments

Comments
 (0)