generated from fayazara/zooper
-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (44 loc) · 1.4 KB
/
nuxtjs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Sample workflow for building and deploying a Nuxt site to GitHub Pages
#
# To get started with Nuxt see: https://nuxtjs.org/docs/get-started/installation
#
name: Deploy Nuxt site to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: ${{ steps.detect-package-manager.outputs.manager }}
- name: Install dependencies
run: cd src && npm install
- name: Build Vue
run: cd src && npm run build
- name: Move dirs around
run: |
mkdir buildDir
mv docker-compose.yml buildDir/
mkdir buildDir/src
mv src/Dockerfile buildDir/src
mv src/.output buildDir/src
mv buildDir/src/.output buildDir/src/out
- name: Commit changes
run: |
cd buildDir
git config --global user.email "[email protected]"
git config --global user.name "CI"
git init
git add -A
git commit -m 'deploy'
git push -f https://${{ vars.username }}:${{ secrets.token }}@github.com/${{ vars.username }}/portfolio.git master:builds