291st/.github/workflows/website.yaml
ztimson 6ccae9aa1f
All checks were successful
Build Website / Build NPM Project (push) Successful in 29s
Build Website / Build & Push Dockerfile (push) Successful in 2m12s
Updated build
2023-11-24 13:15:22 -05:00

23 lines
598 B
YAML

name: Build Website
run-name: Build Website
on:
push:
jobs:
build:
name: Build NPM Project
uses: ztimson/actions/.github/workflows/npm.yaml@develop
with:
repository: ${{github.server_url}}/${{github.repository}}.git
artifact_name: website
artifacts: dist
publish:
name: Build & Push Dockerfile
needs: build
uses: ztimson/actions/.github/workflows/docker.yaml@develop
with:
repository: ${{github.server_url}}/${{github.repository}}.git
pass: ${{secrets.DEPLOY_TOKEN}}