Skip to content

Fix Resume Link

Fix Resume Link #2

Workflow file for this run

# This workflow will do a clean install of dependencies and
# deploy the app to GitHub Pages.
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Clean Install Dependencies
run: npm ci
- name: Deploy
run: |
git config --global user.name $user_name
git config --global user.email $user_email
git remote set-url origin https://${access_token}@github.com/${repository}
npm run deploy
env:
user_name: 'Joel Smith'
user_email: 'joelsmith.2019@gmail.com'
access_token: ${{ secrets.ACTIONS_DEPLOY_ACCESS_TOKEN }}
repository: ${{ github.repository }}