From 399d42e81cad5d3f47ff23b193f6a9208b96fad0 Mon Sep 17 00:00:00 2001 From: Ahmed Radjdi Date: Fri, 5 May 2023 16:12:39 +0200 Subject: [PATCH] Replace appType osx to macos --- src/altool.ts | 4 ++-- src/main.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/altool.ts b/src/altool.ts index 3c51809..2df4553 100644 --- a/src/altool.ts +++ b/src/altool.ts @@ -2,12 +2,12 @@ import * as path from 'path' import * as io from '@actions/io' import * as fs from 'fs' import * as exec from '@actions/exec' -import {ExecOptions} from '@actions/exec/lib/interfaces' +import { ExecOptions } from '@actions/exec/lib/interfaces' /** Upload the specified application. @param appPath The path to the app to upload. - @param appType The type of app to upload (osx | ios | appletvos) + @param appType The type of app to upload (macos | ios | appletvos) @param apiKeyId The id of the API key to use (private key must already be installed) @param issuerId The issuer identifier of the API key. @param options (Optional) Command execution options. diff --git a/src/main.ts b/src/main.ts index 33514d1..8b687c0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,7 +2,7 @@ import * as core from '@actions/core' import * as os from 'os' import * as altool from './altool' -import {ExecOptions} from '@actions/exec/lib/interfaces' +import { ExecOptions } from '@actions/exec/lib/interfaces' async function run(): Promise { try {