Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Fix missing lockfile bump when releasing a new version #47

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ jobs:
cd simple-app && npm i @fishjam-dev/ts-client && cd ..

# Commit changes
- name: Commit package.json and examples' lockfiles changes and create tag
- name: Commit changed files and create a new tag
run: |
git add package.json examples/minimal/package-lock.json examples/simple-app/package-lock.json
git add package.json package-lock.json examples/minimal/package-lock.json examples/simple-app/package-lock.json
git commit -m "Release ${{ env.TAG_NAME }}"
git tag ${{ env.TAG_NAME }}

Expand Down
Loading