File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ This directory contains GitHub Actions workflows for automated CI/CD tasks.
19196 . ** Creates release archive** - Packages everything into a timestamped ZIP file
20207 . ** Uploads artifact** - Makes the release available for download (90-day retention)
2121
22+ ** Security:**
23+
24+ The workflow uses minimal permissions:
25+ - ` contents: read ` - Read access to repository contents
26+ - ` actions: write ` - Write access to upload workflow artifacts
27+
2228** Required Secrets:**
2329
2430Before using this workflow, you need to configure these GitHub secrets:
Original file line number Diff line number Diff line change 1010 name : Build and Package Production Release
1111 runs-on : ubuntu-latest
1212
13+ permissions :
14+ contents : read
15+ actions : write # Required for uploading artifacts
16+
1317 steps :
1418 - name : Checkout repository
1519 uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments