Skip to content

Commit

Permalink
Merge pull request #10 from ymgyt/ci-permissions
Browse files Browse the repository at this point in the history
ci: add content write permission to cd workflow
  • Loading branch information
ymgyt authored Jul 24, 2023
2 parents 52dfea5 + b7ae0b4 commit e3c302d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@ on:
tags:
- 'v*.*.*'

# We need contents write permission to create release
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
# https://github.com/taiki-e/upload-rust-binary-action/issues/15#issuecomment-1141252687
permissions:
contents: write

name: cd

jobs:

0 comments on commit e3c302d

Please sign in to comment.