Skip to content

Commit

Permalink
fix(ci) final fix, including skipping the ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bejoinka committed Aug 2, 2024
1 parent 26f8b61 commit 52c49ff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ jobs:
git config --global user.email "[email protected]"
npm version patch
npm run bundle
new_version=$(cat package.json | jq -r '.version')
git add .
git commit -m "ci: update tag with new version $new_version [skip ci]" && git push
git tag -a $new_version -m "ci: update tag with new version $new_version" && git push origin $new_version
new_version=v$(cat package.json | jq -r '.version')
git commit --amend -m "$new_version [skip ci]"
git push
git tag -a $new_version -m "ci: update tag: $new_version" && git push --tags
echo "new_version=$new_version" >> "$GITHUB_OUTPUT"
- name: Create release
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "action-validate",
"description": "GitHub action for careflow validation",
"version": "1.1.1",
"version": "1.1.2",
"author": "",
"private": true,
"homepage": "https://github.com/awell-health/action-validate",
Expand Down

0 comments on commit 52c49ff

Please sign in to comment.