File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
workflow_dispatch :
8
8
9
9
env :
10
- OUTPUT_ROOT_DIR : packages /icon-files/
10
+ OUTPUT_ROOT_DIR : .. /icon-files/
11
11
TARGET_BRANCH : ${{ github.event_name == 'workflow_dispatch' && github.ref_name || 'main' }}
12
12
13
13
jobs :
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export async function* getChangedFiles(dir: string) {
10
10
throw new Error ( `icons-cli: target directory not found (${ dir } )` )
11
11
const gitStatus = await collectGitStatus ( )
12
12
for ( const [ relativePath , status ] of gitStatus ) {
13
- const fullpath = path . resolve ( process . cwd ( ) , relativePath )
13
+ const fullpath = path . resolve ( process . cwd ( ) , '../../' , relativePath )
14
14
if ( ! fullpath . startsWith ( `${ dir } /` ) ) {
15
15
continue
16
16
}
You can’t perform that action at this time.
0 commit comments