fix: added md resumes to resumes folder #41
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
name: Deploy to GitHub Pages | |
on: | |
push: | |
branches: | |
- main # Trigger workflow on push to the main branch | |
permissions: | |
contents: write | |
pages: write | |
id-token: write # Required for GitHub Pages deployment via Actions | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Upload Files for Deployment | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: ./ # Upload the entire repository's content | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v2 |