Skip to content

Commit

Permalink
Fix publish workflow
Browse files Browse the repository at this point in the history
We need write permissions on the contents to create a GitHub release per their [example](https://github.com/ncipollo/release-action#example)
blink1073 authored Mar 10, 2022
1 parent 08d6487 commit 83a4b30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release_publish.yml
Original file line number Diff line number Diff line change
@@ -8,10 +8,12 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies

0 comments on commit 83a4b30

Please sign in to comment.