Skip to content

Commit ff06c84

Browse files
authored
Merge branch 'main' into chore!/bump-deps
2 parents 97dc0c8 + f341f3f commit ff06c84

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
- if: github.event.release.prerelease
3939
run: |
4040
npm version pre --preid=${{ steps.short_github_sha.outputs.id }} --no-git-tag-version
41+
npm run build
4142
npm publish --tag=beta
4243
env:
4344
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

src/commands/app/restart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default <ICommand<CommandArgs>>{
2525
const response = await core.api.put<
2626
// | RESTPutApiAppRestartResult
2727
| RESTPutApiAppAllRestartResult
28-
>(Routes.teamRestart(args.app));
28+
>(Routes.appRestart(args.app));
2929

3030
if (!response.apps) return core.print.apiResponse(response);
3131

src/commands/team/restart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default <ICommand<CommandArgs>>{
2525
const response = await core.api.put<
2626
// | RESTPutApiAppRestartResult
2727
| RESTPutApiAppAllRestartResult
28-
>(Routes.appRestart(args.app));
28+
>(Routes.teamRestart(args.app));
2929

3030
if (!response.apps) return core.print.apiResponse(response);
3131

0 commit comments

Comments
 (0)