Skip to content

Commit

Permalink
add tag build
Browse files Browse the repository at this point in the history
Signed-off-by: Toshaan Bharvani <[email protected]>
  • Loading branch information
toshywoshy committed Jun 9, 2024
1 parent 9b13c7a commit 38d8de8
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Sponsor Document LaTeX base RELEASE
on:
push:
tags:
- '*'
jobs:
deploy:
name: Create Release
needs: build_latex
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Update to Sponsordoc ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit 38d8de8

Please sign in to comment.