Skip to content

Commit

Permalink
make an artifact-building workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bpcreech authored Feb 4, 2024
1 parent 623083d commit 8b011d7
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Deploy

on:
push:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3

- run: npm install
- run: npm run build

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: production-files
path: ./dist

0 comments on commit 8b011d7

Please sign in to comment.