Skip to content
Closed
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
1 change: 1 addition & 0 deletions .audit-snapshot-trigger
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Snapshot current master for read-only audit.
32 changes: 32 additions & 0 deletions .github/workflows/audit-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Source Audit Snapshot

on:
push:
branches: [ audit-snapshot ]

permissions:
contents: read

jobs:
snapshot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Create source snapshot
run: |
rm -rf .git node_modules .next
zip -r hardware-studio-audit.zip . \
-x 'hardware-studio-audit.zip' \
-x '.git/*' \
-x 'node_modules/*' \
-x '.next/*'

- name: Upload source snapshot
uses: actions/upload-artifact@v4
with:
name: hardware-studio-source-audit
path: hardware-studio-audit.zip
retention-days: 1
Loading