Skip to content

Commit e7b44a3

Browse files
committed
Add GitHub Actions to the project
1 parent 7776985 commit e7b44a3

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

.github/workflows/gh_pages_deploy.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build Vue
2+
on: [push]
3+
jobs:
4+
build_vue:
5+
runs-on: ubuntu-latest
6+
name: Build Vue
7+
steps:
8+
- uses: actions/checkout@v2
9+
- id: Build-Vue
10+
uses: xRealNeon/VuePagesAction@1.0.1
11+
with:
12+
username: "hackgrrrl"
13+
reponame: "webpage-2021"
14+
cname: "www.hackgrrrl.com"
15+
token: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged

vue.config.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
module.exports = {
2-
publicPath: '/',
3-
transpileDependencies: [
4-
'vuetify'
5-
]
6-
}
2+
publicPath: "/webpage-2021/",
3+
transpileDependencies: ["vuetify"],
4+
};

0 commit comments

Comments
 (0)