-
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.
- Loading branch information
1 parent
3f07124
commit 7e7f9d1
Showing
1 changed file
with
3 additions
and
7 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 |
---|---|---|
|
@@ -19,10 +19,7 @@ jobs: | |
run: | | ||
git config --global user.name "davidedigrande" | ||
git config --global user.email "[email protected]" | ||
gh repo list | ||
gh repo delete davidedigrande.github.io --yes | ||
gh repo create davidedigrande.github.io --public | ||
git clone https://x-access-token:${GITHUB_TOKEN}@github.com/davidedigrande/davidedigrande.github.io.git | ||
git clone https://x-access-token:${GH_TOKEN}@github.com/davidedigrande/davidedigrande.github.io.git | ||
pip install -r requirements.txt | ||
python -m main | ||
cp -R ./resume.html ./davidedigrande.github.io/index.html | ||
|
@@ -32,6 +29,5 @@ jobs: | |
git add . | ||
git commit -m "Update from Resume-Builder" | ||
git push | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
env: | ||
GH_TOKEN: ${{ secrets.RESUME_BUILDER_GITHUB_ACTION_TOKEN }} |