Skip to content

Commit

Permalink
add artifact downloading before tag and release to include the upload…
Browse files Browse the repository at this point in the history
…ed artifact from build
  • Loading branch information
aridyckovsky committed May 5, 2024
1 parent 323480d commit 0388ff8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/create-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
root_file: cv.tex
working_directory: cv
- name: Upload
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: cv
Expand All @@ -35,6 +35,11 @@ jobs:
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: cv
path: cv/cv.pdf
- name: Tag
id: generate_release_tag
uses: amitsingh-007/[email protected]
Expand Down

0 comments on commit 0388ff8

Please sign in to comment.