Skip to content

Upload the resume artifacts to pages #5

Upload the resume artifacts to pages

Upload the resume artifacts to pages #5

Workflow file for this run

name: Build Resume
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Roboto fonts
run: sudo apt install -y fonts-roboto
- name: Install Source Han Sans TW fonts
run: |
curl -sL -o SourceHanSansTW.zip https://github.com/adobe-fonts/source-han-sans/releases/latest/download/SourceHanSansTW.zip
unzip -d SourceHanSansTW SourceHanSansTW.zip
cp SourceHanSansTW/SubsetOTF/TW/*.otf /usr/share/fonts/
fc-cache -fv
- name: Setup Typst
uses: yusancky/setup-typst@v2
id: setup-typst
with:
version: 'latest'
- name: Print supported fonts
run: typst fonts
- name: Build resume
run: typst compile resume.typ
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Resume-PDF
path: resume.pdf
if-no-files-found: error
render:
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v3
with:
name: Resume-PDF
- name: Install poppler-utils
run: sudo apt install -y poppler-utils
- name: Render resume as PNG
run: pdftoppm resume.pdf resume -png
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: Resume-PNG
path: '*.png'
if-no-files-found: error
upload:
runs-on: ubuntu-latest
needs:
- render
if: "github.ref == refs/heads/main"

Check failure on line 55 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / Build Resume

Invalid workflow file

The workflow is not valid. .github/workflows/build.yaml (Line: 55, Col: 9): Unexpected symbol: 'refs/heads/main'. Located at position 15 within expression: github.ref == refs/heads/main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2