-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b19c8fd
commit 25498bd
Showing
2 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,11 +12,18 @@ jobs: | |
uses: openjournals/openjournals-draft-action@master | ||
with: | ||
journal: joss | ||
# Specify the path to the Markdown file for the paper. | ||
paper-path: paper/paper.md | ||
|
||
- name: Upload PDF Artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: paper | ||
path: paper/paper.pdf | ||
|
||
- name: Commit and Push PDF | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GeorgeVassilakis" | ||
git add paper/paper.pdf | ||
git commit -m "Update PDF" || echo "No changes to commit" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters