Skip to content

Remove instagram link #92

Remove instagram link

Remove instagram link #92

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
paths:
- "src/**"
- "public/**"
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code 🛎
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Download Resume 📜
uses: xsalazar/actions/downloader@master
with:
url: ${{ secrets.RESUME_URL }}
filename: "public/resume.pdf"
- name: Download Terraform Certification 💾
uses: xsalazar/actions/downloader@master
with:
url: ${{ secrets.TERRAFORM_CERTIFICATION_URL }}
filename: "public/terraform-cert.pdf"
- name: Download AWS Certification 💾
uses: xsalazar/actions/downloader@master
with:
url: ${{ secrets.AWS_CERTIFICATION_URL }}
filename: "public/aws-cert.pdf"
- name: Setup Node 🏗
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install and Build 🔧
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build
CLEAN: true # Automatically remove deleted files from the deploy branch