Skip to content

Commit

Permalink
build frontend assets in CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
thefinn93 committed Jul 11, 2023
1 parent ba52ce1 commit 887b549
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/frontend-asset-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Frontend Asset Build Pipeline
run-name: Build Frontend Assets
on: [push]
jobs:
build-frontend-assets:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update && sudo apt-get install -y podman
- name: Check out repository code
uses: actions/checkout@v3
- run: ./build-frontend.sh
- uses: actions/upload-artifact@v3
with:
name: frontend
path: js/

0 comments on commit 887b549

Please sign in to comment.