Skip to content

Commit

Permalink
workflow debug
Browse files Browse the repository at this point in the history
  • Loading branch information
steam0r committed Feb 27, 2024
1 parent 28f8c4e commit 199508c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ jobs:
run: npm install
- name: build standalone
run: ./hook_standalone.sh
- name: files
run: ls cables_electron/dist/
- name: Create Release
id: create_release
uses: actions/[email protected]
Expand Down
5 changes: 4 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import gulp from "gulp";
import fs from "fs";
import path from "path";
import mkdirp from "mkdirp";
import getRepoInfo from "git-repo-info";

import webpack from "webpack-stream";
Expand Down Expand Up @@ -39,16 +39,19 @@ function getBuildInfo()

function _api_copy()
{
mkdirp.sync("public/libs");
return gulp.src("../cables_api/public/libs/**").pipe(gulp.dest("public/libs/"));
}

function _core_copy()
{
mkdirp.sync("public/libs_core");
return gulp.src("../cables/build/libs/**").pipe(gulp.dest("public/libs_core/"));
}

function _ui_copy()
{
mkdirp.sync("ui");
return gulp.src("../cables_ui/dist/**").pipe(gulp.dest("ui/"));
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
"to": "cables/src/ops/base/"
},
{
"from": "../cables_api/public/libs/",
"from": "./public/libs/",
"to": "public/libs/"
},
{
"from": "../cables_api/public/libs/",
"from": "../cables/build/libs/",
"to": "public/libs_core/"
},
{
Expand Down

0 comments on commit 199508c

Please sign in to comment.