-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add notifyTesters option that will remove the --silent flag * specify bash on entrypoint * add bash to dockerfile * Sort releases in reverse numeric order * Fix parameters on sort
- Loading branch information
1 parent
e8cbbe0
commit 785f7cc
Showing
4 changed files
with
27 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
name: 'App Center' | ||
description: 'GitHub Action that uploads artefacts for Visual Studio App Center' | ||
author: 'Wojciech Zięba <@wzieba>' | ||
name: "App Center" | ||
description: "GitHub Action that uploads artefacts for Visual Studio App Center" | ||
author: "Wojciech Zięba <@wzieba>" | ||
inputs: | ||
appName: | ||
description: 'App name followed by username e.g. wzieba/Sample-App' | ||
description: "App name followed by username e.g. wzieba/Sample-App" | ||
required: true | ||
token: | ||
description: 'Upload token - you can get one from appcenter.ms/settings' | ||
description: "Upload token - you can get one from appcenter.ms/settings" | ||
required: true | ||
group: | ||
description: 'Distribution group' | ||
description: "Distribution group" | ||
required: true | ||
file: | ||
description: 'Artefact to upload (.apk or .ipa)' | ||
description: "Artefact to upload (.apk or .ipa)" | ||
required: true | ||
releaseNotes: | ||
description: 'Release notes visible on release page' | ||
description: "Release notes visible on release page" | ||
required: false | ||
gitReleaseNotes: | ||
description: "Generate release notes based on the latest git commit" | ||
required: false | ||
notifyTesters: | ||
description: "If true, send an email notification to the distribution group" | ||
required: false | ||
branding: | ||
color: 'red' | ||
icon: 'send' | ||
color: "red" | ||
icon: "send" | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: "docker" | ||
image: "Dockerfile" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters