Skip to content

Commit

Permalink
docs generateg
Browse files Browse the repository at this point in the history
  • Loading branch information
ramin committed Apr 30, 2024
1 parent 0ebef4a commit 9c2714d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: upload release docs

permissions:
contents: write

on:
release:
types: [created]

jobs:
upload-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- run: |
echo "Uploading docs for release ${{ github.event.release.tag_name }}" > file.txt
gh release upload ${{github.event.release.tag_name}} file.txt
env:
GITHUB_TOKEN: ${{ github.TOKEN }}

0 comments on commit 9c2714d

Please sign in to comment.