Browse Source

fix(CI): Grant tag update action workflow permissions

Moving a tag between commits with workflows counts as changing the workflow,
so workflow write permission can be required.
pull/6484/head
Anthony Bilinski 4 years ago
parent
commit
0e48a8b895
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 3
      .github/workflows/build-test-deploy.yaml

3
.github/workflows/build-test-deploy.yaml

@ -6,7 +6,8 @@ jobs: @@ -6,7 +6,8 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
permissions:
contents: write
contents: write
actions: write # due to possibly updating this file
steps:
- uses: actions/checkout@v2
- name: Move nightly tag to head for nightly release

Loading…
Cancel
Save