Skip to content

Commit

Permalink
Hardcode JSON Schema version in action.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
  • Loading branch information
jviotti committed Jun 3, 2024
1 parent 8db8e40 commit 541c27b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CONTRIBUTING.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ Releasing

```sh
git checkout main

# Update the VERSION in CMakeLists.txt
vim CMakeLists.txt
git add CMakeLists.txt
# Update the version in action.yml
vim action.yml

git add CMakeLists.txt action.yml
git commit -m "vX.Y.Z"
git tag -a "vX.Y.Z" -m "vX.Y.Z"
git push
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ runs:
--output "${GITHUB_WORKSPACE}/install.sh" \
"https://raw.githubusercontent.com/intelligence-ai/jsonschema/main/install"
chmod +x "${GITHUB_WORKSPACE}/install.sh"
"${GITHUB_WORKSPACE}/install.sh" "${GITHUB_REF#refs/tags/v}"
"${GITHUB_WORKSPACE}/install.sh" 0.1.3
rm "${GITHUB_WORKSPACE}/install.sh"

0 comments on commit 541c27b

Please sign in to comment.