Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
bun-version: 1.0.1
- name: Get frontend package version
id: get_frontend_version
run: echo frontend_version=$(bun run -e "console.log(require('./frontend/package.json').version)") >> $GITHUB_OUTPUT
run: echo frontend_version=$(jq -r '.version' ./frontend/package.json) >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
bun-version: 1.0.1
- name: Get admin_frontend package version
id: get_admin_frontend_version
run: echo admin_frontend_version=$(bun run -e "console.log(require('./admin_frontend/package.json').version)") >> $GITHUB_OUTPUT
run: echo admin_frontend_version=$(jq -r '.version' ./admin_frontend/package.json) >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
bun-version: 1.0.1
- name: Get backend package version
id: get_backend_version
run: echo backend_version=$(bun run -e "console.log(require('./backend/package.json').version)") >> $GITHUB_OUTPUT
run: echo backend_version=$(jq -r '.version' ./backend/package.json) >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
Loading