Skip to content

Commit

Permalink
fix: changed deploy script
Browse files Browse the repository at this point in the history
Signed-off-by: michalrozekariane <[email protected]>
  • Loading branch information
michalrozekariane committed Mar 18, 2024
1 parent 542a43d commit 59801a4
Showing 1 changed file with 38 additions and 16 deletions.
54 changes: 38 additions & 16 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,51 @@
name: Deploy to GitHub Pages
name: Deploy

on:
push:
branches:
- main

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

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

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 21

- name: Install dependencies
uses: bahmutov/npm-install@v1

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '21'
- name: Build project
run: npm run build

- name: Install dependencies
run: npm install
- name: Upload production-ready build files
uses: actions/upload-artifact@v2
with:
name: production-files
path: ./dist

- name: Build
run: npm run build
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'

steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: production-files
path: ./dist

- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist

0 comments on commit 59801a4

Please sign in to comment.