Skip to content
Merged
Changes from 1 commit
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=$(cat ./frontend/package.json | grep '"version"' | head -1 | awk -F\" '{print $4}') >> $GITHUB_OUTPUT
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
- 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=$(cat ./admin_frontend/package.json | grep '"version"' | head -1 | awk -F\" '{print $4}') >> $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=$(cat ./backend/package.json | grep '"version"' | head -1 | awk -F\" '{print $4}') >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
Loading