Skip to content

Commit f7347e8

Browse files
committed
Create get-ios-app-version action
1 parent 00e4be0 commit f7347e8

File tree

9 files changed

+22149
-819
lines changed

9 files changed

+22149
-819
lines changed

__tests__/main.test.ts

Lines changed: 0 additions & 28 deletions
This file was deleted.

action.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
name: 'Your name here'
2-
description: 'Provide a description here'
3-
author: 'Your name or organization here'
1+
name: 'Get iOS app version'
2+
description: 'GitHub Action that gets the MARKETING_VERSION from your iOS app's project.yml file (XcodeGen project).'
3+
author: 'm.blanchette@agendrix.com'
44
inputs:
5-
milliseconds: # change this
5+
project-yml-path:
6+
description: 'Relative path to the project.yml file'
67
required: true
7-
description: 'input description here'
8-
default: 'default value if applicable'
8+
outputs:
9+
app-version:
10+
description: 'The MARKETING_VERSION fetched from your iOS app's project.yml'
911
runs:
10-
using: 'node12'
12+
using: 'node16'
1113
main: 'dist/index.js'

0 commit comments

Comments
 (0)