-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update upload-pages-artifact in build and publish workflow
- Loading branch information
Showing
1 changed file
with
8 additions
and
6 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 |
---|---|---|
|
@@ -16,7 +16,7 @@ on: | |
# parallel | ||
jobs: | ||
|
||
# Job to build the LateX files | ||
# Job for building the LateX files | ||
build: | ||
|
||
# The type of runner that the job will run on | ||
|
@@ -37,13 +37,15 @@ jobs: | |
with: | ||
root_file: curriculum_vitae.tex | ||
|
||
# Build the Github page | ||
- name: Build Github page | ||
# Prepare the Github Pages content | ||
- name: Prepare Github page | ||
run: mv curriculum_vitae.pdf website/Diego_Smania_CV_English.pdf | ||
|
||
# TODO: Check what this actions does | ||
- name: Upload GitHub Pages artifact | ||
uses: actions/[email protected] | ||
# Package and upload an artifact for deployment into Github Pages. | ||
- name: Upload Github Pages artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: website | ||
|
||
# Deploy to Github pages | ||
deploy: | ||
|