This commit is contained in:
Bryce Thorup
2023-12-15 06:03:51 -07:00
parent 7a16aa0c3f
commit 5aeac43c32

View File

@@ -8,5 +8,9 @@ inputs:
runs:
using: composite
steps:
- run: version
shell: ls -l
- run: Get jq
shell: apt update && apt install jq -y
- run: Get version from package.json
shell: export CURRENT_VERSION=$(jq -r .version package.json)
- run: Get tagged versions from git
shell: export PREVIOUS_VERSIONS=$(git tag -l)