Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cbarbian-sap committed Jul 10, 2023
1 parent daaaa55 commit cba8baa
Show file tree
Hide file tree
Showing 97 changed files with 42,045 additions and 58 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
# Ignore build and test binaries.
bin/
testbin/
6 changes: 6 additions & 0 deletions .github/actions/get-highest-tag/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.idea
*.swp
*.swo
*~

node_modules
7 changes: 7 additions & 0 deletions .github/actions/get-highest-tag/Makefile
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



13 changes: 13 additions & 0 deletions .github/actions/get-highest-tag/action.yaml
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
Loading

0 comments on commit cba8baa

Please sign in to comment.