mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 11:03:59 +00:00
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:
commit
71db599b41
1 changed files with 29 additions and 0 deletions
29
.github/workflows/upload-robots-txt-file-to-release.yml
vendored
Normal file
29
.github/workflows/upload-robots-txt-file-to-release.yml
vendored
Normal 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 }}
|
Loading…
Reference in a new issue