Add authentication for gh command

This commit is contained in:
Y. Meyer-Norwood 2024-11-11 13:04:55 +13:00 committed by GitHub
parent adfd4af872
commit 94ceb3cffd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,6 +8,9 @@ on:
types:
- published
permissions:
contents: write
jobs:
upload-robots-txt-file-to-release:
name: "Upload robots.txt file to release"
@ -19,5 +22,6 @@ jobs:
- name: "Upload"
run: gh --repo "${REPO}" release upload "${TAG}" robots.txt
env:
GH_TOKEN: ${{ github.token }}
REPO: ${{ github.repository }}
TAG: ${{ github.event.release.tag_name }}