generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f9aa06
commit 9ab3112
Showing
13 changed files
with
20,450 additions
and
209 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.idea | ||
*.swp | ||
*.swo | ||
*~ | ||
|
||
node_modules |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.PHONY: build | ||
build: | ||
npm ci | ||
ncc build src/index.js --license licenses.txt | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: Get highest tag | ||
description: Get highest semver tag in current repository | ||
inputs: | ||
prefix: | ||
description: Tag prefix (only tags with that prefix are considered) | ||
outputs: | ||
tag: | ||
description: Highest tag (according to semver ordering) | ||
version: | ||
description: Highest version (i.e. determined highest tag, stripped by prefix) | ||
runs: | ||
using: node16 | ||
main: dist/index.js |
Oops, something went wrong.