Skip to content

Commit

Permalink
Build to dist/ folder
Browse files Browse the repository at this point in the history
GitHub Actions doesn't allow uploading build artifacts that aren't in
the repo folder
  • Loading branch information
bdukes committed Oct 21, 2020
1 parent 12748d7 commit 71632d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ jobs:
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
path: ../../CompiledModules/
path: dist/
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -307,3 +307,5 @@ __pycache__/

# Compiled Docs
docs_compiled/

dist/
2 changes: 1 addition & 1 deletion DeployClient/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var CONFIG = require('./project.config');
Create all the paths we need ahead of time.
*/
var binDir = 'bin/Release/',
compiledModulesDir = '../../CompiledModules/';
compiledModulesDir = '../dist/';

/*
Modules
Expand Down
2 changes: 1 addition & 1 deletion PolyDeploy/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var clientsDir = 'Clients/',
binDir = 'bin/',
webModuleDir = `${CONFIG.WEBSITE_PATH}DesktopModules/Cantarus/${CONFIG.MODULE_NAME}/`,
webBinDir = `${CONFIG.WEBSITE_PATH}bin/`,
compiledModulesDir = '../../CompiledModules/';
compiledModulesDir = '../dist/';

/*
Modules
Expand Down

0 comments on commit 71632d2

Please sign in to comment.