Skip to content

Commit

Permalink
feat: automated build
Browse files Browse the repository at this point in the history
  • Loading branch information
cadriel committed Jan 9, 2021
1 parent 7c0af86 commit fa92e38
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: VUE BUILD

on:
push:
branches:
- develop
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install node
uses: actions/setup-node@v2
with:
node-version: '12'

- name: Install deps
run: npm install

- name: Build
run: npm run build
2 changes: 1 addition & 1 deletion .github/workflows/multiarch_dockerhub.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and push multi-arch Docker image to Dockerhub
name: DOCKER BUILD, DEPLOY

on:
release:
Expand Down

0 comments on commit fa92e38

Please sign in to comment.