Skip to content

Commit

Permalink
Add GitHub Actions workflow for deploying to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
loehnertz committed Jun 9, 2024
1 parent 4c62416 commit 9531d61
Show file tree
Hide file tree
Showing 3 changed files with 361 additions and 913 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- create-vue-app

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

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

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Build project
run: npm run build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org/
Loading

0 comments on commit 9531d61

Please sign in to comment.