Skip to content

Commit d22037d

Browse files
fix: remove PDF renaming step and update file references in release workflow
1 parent 332c6f2 commit d22037d

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,6 @@ jobs:
5757
ghcr.io/${{ github.repository_owner }}/latex-builder \
5858
-jobname="Anish_Shobith_P_S_Resume" main.tex
5959
60-
- name: Rename PDF with date
61-
run: |
62-
mv Anish_Shobith_P_S_Resume.pdf \
63-
"Anish_Shobith_P_S_Resume_${{ steps.date.outputs.date }}.pdf"
64-
6560
- name: Generate changelog
6661
id: changelog
6762
run: |
@@ -78,7 +73,7 @@ jobs:
7873
- name: Get PDF size
7974
id: meta
8075
run: |
81-
SIZE=$(du -sh "Anish_Shobith_P_S_Resume_${{ steps.date.outputs.date }}.pdf" | cut -f1)
76+
SIZE=$(du -sh Anish_Shobith_P_S_Resume.pdf | cut -f1)
8277
echo "size=$SIZE" >> $GITHUB_OUTPUT
8378
8479
- name: Create Release
@@ -101,7 +96,7 @@ jobs:
10196
```
10297
${{ steps.changelog.outputs.log }}
10398
```
104-
files: Anish_Shobith_P_S_Resume_${{ steps.date.outputs.date }}.pdf
99+
files: Anish_Shobith_P_S_Resume.pdf
105100
token: ${{ secrets.GITHUB_TOKEN }}
106101
generate_release_notes: true
107102
make_latest: true

0 commit comments

Comments
 (0)