Skip to content

Commit 5f5286b

Browse files
committed
Fixing CI workflow (14)
1 parent 3da64d7 commit 5f5286b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/latex-build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and Release LaTeX Document
33
on:
44
push:
55
tags:
6-
- "lab_v*"
6+
- "lab_*"
77

88
jobs:
99
build-and-release:
@@ -35,7 +35,7 @@ jobs:
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
with:
38-
tag_name: ${{ env.TAG_NAME }}
38+
tag_name: ${{ github.ref }}
3939
release_name: Release ${{ env.TAG_NAME }}
4040
draft: false
4141
prerelease: false
@@ -46,6 +46,6 @@ jobs:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4747
with:
4848
upload_url: ${{ steps.create_release.outputs.upload_url }}
49-
asset_path: "./lab-instructions/dodlabs_${TAG_NAME}.pdf"
50-
asset_name: "dodlabs_${TAG_NAME}.pdf"
49+
asset_path: ./lab-instructions/dodlabs_${{ env.TAG_NAME }}.pdf
50+
asset_name: dodlabs_${{ env.TAG_NAME }}.pdf
5151
asset_content_type: application/pdf

0 commit comments

Comments
 (0)