Skip to content

add profile picture to gh-pages site #28

add profile picture to gh-pages site

add profile picture to gh-pages site #28

Workflow file for this run

# this workflow updates my `resume.json` github gist every time there is a release
# https://gist.github.com/alifeee/97f9ac1642b1c46cf66942c3f079a42f
name: update GitHub Gist
on:
push:
paths:
- "cv.json"
tags:
- "*"
jobs:
update-gist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Rename cv.json
run: mv cv.json resume.json
- name: Deploy to gist
uses: exuanbo/actions-deploy-gist@v1
with:
token: ${{ secrets.GIST_TOKEN }}
gist_id: ${{ secrets.GIST_ID }}
file_path: resume.json
file_type: json