Skip to content

Commit 7622384

Browse files
jbujulaclaude
andcommitted
rebundle actions for renamed @microsoft/managed-apps-cli package
The MAAF CLI was republished on public npm under a new name: @microsoft/apps-cli → @microsoft/managed-apps-cli Source files (install-ms-cli/action.yml, src/actions/install-ms-cli/index.ts) were already updated to reference the new package name, but the dist bundles still embedded the old name and are out of sync. Also picks up the ms-app-deploy repoType branching: reads `repoType` from ms.config.json and skips `--commit` when repoType is 'none' (escape-hatch apps that pack and upload an artifact, with no git binding on the server). No behavior change beyond the package-name rename and the existing repoType-aware deploy logic that was already in the source. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 3191cf8 commit 7622384

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/actions/install-ms-cli/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19832,7 +19832,7 @@ function main() {
1983219832
const version = core.getInput(argName.version, { required: false }) || "latest";
1983319833
const registryUrl = core.getInput(argName.registryUrl, { required: false }) || "https://registry.npmjs.org";
1983419834
const registryAuthToken = core.getInput(argName.registryAuthToken, { required: false });
19835-
const npmPackageName = core.getInput(argName.npmPackageName, { required: false }) || "@microsoft/apps-cli";
19835+
const npmPackageName = core.getInput(argName.npmPackageName, { required: false }) || "@microsoft/managed-apps-cli";
1983619836
if (registryAuthToken) {
1983719837
core.setSecret(registryAuthToken);
1983819838
}

dist/actions/ms-app-deploy/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19835,7 +19835,7 @@ var require_install_ms_cli = __commonJS({
1983519835
const version = core2.getInput(argName2.version, { required: false }) || "latest";
1983619836
const registryUrl = core2.getInput(argName2.registryUrl, { required: false }) || "https://registry.npmjs.org";
1983719837
const registryAuthToken = core2.getInput(argName2.registryAuthToken, { required: false });
19838-
const npmPackageName = core2.getInput(argName2.npmPackageName, { required: false }) || "@microsoft/apps-cli";
19838+
const npmPackageName = core2.getInput(argName2.npmPackageName, { required: false }) || "@microsoft/managed-apps-cli";
1983919839
if (registryAuthToken) {
1984019840
core2.setSecret(registryAuthToken);
1984119841
}

dist/actions/ms-app-pack/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19835,7 +19835,7 @@ var require_install_ms_cli = __commonJS({
1983519835
const version = core2.getInput(argName.version, { required: false }) || "latest";
1983619836
const registryUrl = core2.getInput(argName.registryUrl, { required: false }) || "https://registry.npmjs.org";
1983719837
const registryAuthToken = core2.getInput(argName.registryAuthToken, { required: false });
19838-
const npmPackageName = core2.getInput(argName.npmPackageName, { required: false }) || "@microsoft/apps-cli";
19838+
const npmPackageName = core2.getInput(argName.npmPackageName, { required: false }) || "@microsoft/managed-apps-cli";
1983919839
if (registryAuthToken) {
1984019840
core2.setSecret(registryAuthToken);
1984119841
}

0 commit comments

Comments
 (0)