Skip to content

Commit

Permalink
feat(github): add workflow for model and DLC images gen
Browse files Browse the repository at this point in the history
  • Loading branch information
krokoko committed Jan 31, 2024
1 parent eff31a6 commit 70790a2
Show file tree
Hide file tree
Showing 9 changed files with 423 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

83 changes: 83 additions & 0 deletions .github/workflows/code-generation.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .npmignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .projen/files.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
runSemGrepWorkflow,
runBanditWorkflow,
runCommitLintWorkflow,
buildCodeGenerationWorkflow,
} from './projenrc/github-workflows';

// Constants
Expand Down Expand Up @@ -116,6 +117,7 @@ buildOrtToolkitWorkflow(project);
runSemGrepWorkflow(project);
runBanditWorkflow(project);
runCommitLintWorkflow(project);
buildCodeGenerationWorkflow(project);

// Add specific overrides https://projen.io/github.html#actions-versions
project.github?.actions.set('actions/checkout@v3', 'actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744');
Expand Down Expand Up @@ -153,7 +155,7 @@ project.npmignore?.addPatterns(
'projenrc',
'tsconfig.dev.json',
'yarn.lock',
'/apidocs/'
'/apidocs/',
);

// Add License header automatically
Expand Down
Loading

0 comments on commit 70790a2

Please sign in to comment.