Resume/.gitea/workflows/build.yml
Thomas Cole f7045a20f0
All checks were successful
Build Site / Build-Site (18.x) (push) Successful in 26s
More dependencies
2023-07-27 10:29:59 -04:00

36 lines
953 B
YAML

name: Build Site
run-name: ${{ github.actor }} is building Resume
on: [push]
jobs:
Build-Site:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- run: echo "Starting build job"
- uses: actions/checkout@v3
- run: |
apt update
apt install -y libnss3 libatk1.0-0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- name: Upload pdf
uses: actions/upload-artifact@v3
with:
name: PDF
path: build/resume.pdf
# - name: setup go
# uses: https://github.com/actions/setup-go@v4
# with:
# go-version: '>=1.20.1'
# - name: Create Release
# uses: actions/release-action@main
# with:
# files: |-
# build/*.pdf