legio-30/.github/workflows/website.yml
ztimson aee68e37f8
Some checks failed
Build Website / Build NPM Project (push) Successful in 41s
Build Website / Tag Version (push) Failing after 6s
Build Website / Build & Push Dockerfile (push) Successful in 2m40s
Updated website ci/cd
2023-12-04 22:53:54 -05:00

49 lines
1.3 KiB
YAML

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
if: ${{inputs.artifacts}} != "false"
uses: actions/upload-artifact@v3
with:
name: website
path: dist
retention-days: 7
tag:
name: Tag Version
needs: build
runs-on: ubuntu-latest
container: node
steps:
- name: Clone Repository
uses: ztimson/actions/clone@develop
- name: Tag Version
uses: ztimson/actions/tag@develop
publish:
name: Build & Push Dockerfile
needs: build
uses: ztimson/actions/.github/workflows/docker.yaml@develop
with:
name: ztimson/legio30
repository: ${{github.server_url}}/${{github.repository}}.git
pass: ${{secrets.DEPLOY_TOKEN}}