Skip to content

Commit 0487928

Browse files
committed
feat: updated github action
1 parent 66fe629 commit 0487928

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/release-pdf.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@ jobs:
2222
- name: Convert Org to PDF
2323
run: emacs --batch -q --eval '(progn (find-file "workout-plan.org") (org-latex-export-to-pdf))'
2424
- name: Create Release
25-
id: create_release
26-
uses: actions/create-release@v1
27-
env:
28-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
25+
- uses: "marvinpinto/action-automatic-releases@latest"
2926
with:
30-
tag_name: ${{ github.ref }}
31-
release_name: Release ${{ github.ref }}
32-
draft: false
33-
prerelease: false
34-
files: workout-plan.pdf
27+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
28+
automatic_release_tag: "latest"
29+
prerelease: true
30+
title: "Development Build"
31+
files: |
32+
workout-plan.pdf

0 commit comments

Comments
 (0)