diff options
| author | 2026-01-13 14:38:39 +0800 | |
|---|---|---|
| committer | 2026-01-13 14:38:39 +0800 | |
| commit | 6295ce99e717fdd1908e5e276bfc2b51792b69f4 (patch) | |
| tree | 1075e5b22beae4bb0637371e52d69a84dd7a419d /.github | |
| parent | 684ef0e3dd1372a40eda4f255458ba036c8f1393 (diff) | |
| download | DropOut-6295ce99e717fdd1908e5e276bfc2b51792b69f4.tar.gz DropOut-6295ce99e717fdd1908e5e276bfc2b51792b69f4.zip | |
feat: add permissions for contents write access in release workflow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58b5593..02bfa06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,9 +14,14 @@ on: env: CARGO_TERM_COLOR: always +permissions: + contents: write + jobs: promote-release: name: Create Release & Changelog + permissions: + contents: write runs-on: ubuntu-latest outputs: release_id: ${{ steps.create_release.outputs.id }} |