Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Oct 2, 2024
1 parent d485ab4 commit b37e36d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ jobs:
- name: Download build assets (${{ matrix.assets.input }})
uses: actions/download-artifact@v4

- name: Rename files
working-directory: assets
run: |
for f in *.pdf; do cp ${f} ../$(printf '%s\n' "cv.pdf"); done
- name: Create pre-release (${{ needs.dependencies.outputs.version }})
id: create_release
uses: softprops/action-gh-release@v2
Expand All @@ -73,4 +78,4 @@ jobs:
draft: false
prerelease: true
files: |
assets/*.pdf
*.pdf

0 comments on commit b37e36d

Please sign in to comment.