Create upload-robots-txt-file-to-release.yml

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

View file

@ -0,0 +1,23 @@
---
name: "Upload robots.txt file to release"
run-name: "Upload robots.txt file to release"
on:
release:
types:
- published
jobs:
upload-robots-txt-file-to-release:
name: "Upload robots.txt file to release"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Upload"
run: gh --repo "${REPO}" release upload "${TAG}" robots.txt
env:
REPO: ${{ github.repository }}
TAG: ${{ github.event.release.tag_name }}