Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
arddluma committed Feb 27, 2024
1 parent 91e374a commit c6b5096
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
path: frontend
- name: Get frontend package version
id: get_frontend_version
run: cd frontend && ls -la && echo version=$(node -p "require('./package.json').version") >> $GITHUB_OUTPUT
run: echo version=$(node -p "require('./frontend/package.json').version") >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
path: admin_frontend
- name: Get admin_frontend package version
id: get_admin_frontend_version
run: cd admin_frontend && echo version=$(node -p "require('./package.json').version") >> $GITHUB_OUTPUT
run: echo version=$(node -p "require('./admin_frontend/package.json').version") >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
path: backend
- name: Get backend package version
id: get_backend_version
run: cd backend && echo version=$(node -p "require('./package.json').version") >> $GITHUB_OUTPUT
run: echo version=$(node -p "require('./backend/package.json').version") >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit c6b5096

Please sign in to comment.