Added build

This commit is contained in:
Zakary Timson 2024-01-04 19:59:19 -05:00
parent 6b28ed61bd
commit 88761a6a66

36
.github/workflows/build.yaml vendored Normal file
View File

@ -0,0 +1,36 @@
name: Build Website
run-name: Build Website
on:
push:
jobs:
build:
name: Build NPM Project
runs-on: ubuntu-latest
container: node
steps:
- name: Clone Repository
uses: ztimson/actions/clone@develop
- name: Install Dependencies
run: npm i
- name: Build Project
run: npm run build
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: website
path: dist
retention-days: 7
publish:
name: Build & Push Dockerfile
needs: build
uses: ztimson/actions/.github/workflows/docker.yaml@develop
with:
name: ztimson/zakscode
repository: ${{github.server_url}}/${{github.repository}}.git
pass: ${{secrets.DEPLOY_TOKEN}}