-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 915 Bytes
/
resume.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Download Resume
on:
push:
branches:
- main
paths-ignore:
- 'static/**'
jobs:
download-file:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
token: ${{ secrets.GH_TOKEN_CLASSIC_LOERAFLORES_COM }}
- name: Download Resume
run: |
cd static/files
ls
rm -rf resume.pdf
curl -O https://raw.githubusercontent.com/xavierloeraflores/resume/main/resume.pdf
ls
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "xavierloeraflores"
- name: Commit and push changes
run: |
git add .
git commit -m "Downloaded file via GitHub Actions"
git push