Skip to content

Commit

Permalink
updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroXClem committed Aug 8, 2024
1 parent 19791f1 commit 913461c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy Application
name: Build and Deploy Application

on:
push:
Expand All @@ -24,6 +24,9 @@ jobs:
- name: Install dependencies
run: npm install

- name: Run postinstall script
run: npm run postinstall

- name: Run development server
run: npm run dev

Expand All @@ -32,3 +35,9 @@ jobs:

- name: Build application for all platforms
run: npm run package:all

- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: production-artifacts
path: release/build/l

0 comments on commit 913461c

Please sign in to comment.