From d2045ecaf46613d1b1e4565e30aabfa38ba6c165 Mon Sep 17 00:00:00 2001 From: Daan Wijns Date: Wed, 20 May 2020 18:18:03 +0200 Subject: [PATCH] github release test --- .github/workflows/deploy.yml | 20 +++ package-lock.json | 5 + package.json | 1 + src/App.vue | 2 +- src/components/Modals/AddModal.vue | 229 +++++++++++++++++------------ src/components/Navbar.vue | 4 +- src/main.js | 3 + src/store/index.js | 16 -- 8 files changed, 164 insertions(+), 116 deletions(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..d88380f2 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,20 @@ +name: Build & Release +runs-on: ubuntu-latest +on:[push] + branches: + - develop +jobs: + github-release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: actions/setup-node@master + - run: npm install + - run: npm run build + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: true + title: "Development Build" + files: dist \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 93cea953..1711fb46 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10842,6 +10842,11 @@ } } }, + "vue-observe-visibility": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/vue-observe-visibility/-/vue-observe-visibility-0.4.6.tgz", + "integrity": "sha512-xo0CEVdkjSjhJoDdLSvoZoQrw/H2BlzB5jrCBKGZNXN2zdZgMuZ9BKrxXDjNP2AxlcCoKc8OahI3F3r3JGLv2Q==" + }, "vue-router": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.2.0.tgz", diff --git a/package.json b/package.json index 44497aa1..43e8c2a8 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "register-service-worker": "^1.7.1", "vue": "^2.6.11", "vue-apexcharts": "^1.5.3", + "vue-observe-visibility": "^0.4.6", "vue-router": "^3.2.0", "vue-toastification": "^1.7.1", "vuetify": "^2.2.11", diff --git a/src/App.vue b/src/App.vue index 75322ba2..5b4759c9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,6 +1,6 @@