Merge pull request #55 from norwd/feature/add-robots.txt-file-to-release

Create workflow to upload `robots.txt` file as release artefact
This commit is contained in:
Glyn Normington 2024-11-13 01:39:11 +00:00 committed by GitHub
commit 71db599b41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,29 @@
---
name: "Upload robots.txt file to release"
run-name: "Upload robots.txt file to release"
on:
release:
types:
- published
permissions:
contents: write
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
with:
ref: ${{ github.event.release.tag_name }}
- 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 }}