This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Rabatta-ApS/2-newStructure
updated to spec
- Loading branch information
Showing
2 changed files
with
53 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,24 @@ | ||
name: 'Chrome extension version bump' | ||
description: 'Update version number in manifest file ' | ||
description: 'Update version number in version file ' | ||
inputs: | ||
path-to-manifest: | ||
description: 'The path to the manifest file' | ||
default: 'src/manifestShared.json' | ||
path-to-version-file: | ||
description: 'The path to the version file' | ||
default: 'version.txt' | ||
required: true | ||
new-verison: | ||
description: 'New manifest version' | ||
description: 'Manually decide new version' | ||
required: false | ||
mode: | ||
description: 'Can be get, set or ignored if you want to both get the file and set the new value' | ||
required: false | ||
description: 'Can be GET_VERSION, BUMP_VERSION, SET_VERSION' | ||
required: true | ||
default: 'BUMP_VERSION' | ||
outputs: | ||
version: | ||
description: The bumped version | ||
cur_ver: | ||
description: The current version | ||
new_ver: | ||
description: The new version | ||
was_bumped: | ||
description: Whether the version was bumped or not | ||
runs: | ||
using: 'node16' | ||
main: 'index.js' |
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