Merge pull request #7296 from Lawrence37/workflow-permissions

Fix for artifact uploading from GitHub Actions
This commit is contained in:
Lawrence37 2025-02-01 14:29:01 -08:00 committed by GitHub
commit cd3b2c31e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,8 @@ env:
jobs:
build:
runs-on: ubuntu-20.04
permissions:
contents: write
strategy:
fail-fast: false
matrix:

View File

@ -17,6 +17,8 @@ on:
jobs:
build:
runs-on: macos-13
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v4

View File

@ -21,6 +21,8 @@ env:
jobs:
build:
runs-on: windows-latest
permissions:
contents: write
defaults:
run:
shell: msys2 {0}