Skip to content

Commit

Permalink
Image instead of immage (#194)
Browse files Browse the repository at this point in the history
* Image instead of immage

* Run build-local.sh

* Add build output showing VSIX output folder

---------

Co-authored-by: Stuart Leeks <[email protected]>
  • Loading branch information
ross-p-smith and stuartleeks authored Feb 3, 2023
1 parent be3fd68 commit 021d159
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion github-action/dist/index.js

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

2 changes: 1 addition & 1 deletion github-action/dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion github-action/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ function runPost() {
const ref = process.env.GITHUB_REF;
if (refFilterForPush.length !== 0 && // empty filter allows all
!refFilterForPush.some(s => s === ref)) {
core.info(`Immage push skipped because GITHUB_REF (${ref}) is not in refFilterForPush`);
core.info(`Image push skipped because GITHUB_REF (${ref}) is not in refFilterForPush`);
return;
}
const eventName = process.env.GITHUB_EVENT_NAME;
Expand Down
2 changes: 1 addition & 1 deletion github-action/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export async function runPost(): Promise<void> {
!refFilterForPush.some(s => s === ref)
) {
core.info(
`Immage push skipped because GITHUB_REF (${ref}) is not in refFilterForPush`,
`Image push skipped because GITHUB_REF (${ref}) is not in refFilterForPush`,
);
return;
}
Expand Down
2 changes: 2 additions & 0 deletions scripts/build-test-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ else
echo "Creating VSIX (BUILD_NUMBER=${BUILD_NUMBER})"
./scripts/build-package.sh --set-patch-version $BUILD_NUMBER

echo "Copying VSIX files to output folder"
mkdir -p "$script_dir/../output"
cp *.vsix "$script_dir/../output/"
ls -l "$script_dir/../output/"
fi

if [[ -z $IS_CI ]]; then
Expand Down

0 comments on commit 021d159

Please sign in to comment.