Skip to content

Commit

Permalink
fix vars
Browse files Browse the repository at this point in the history
  • Loading branch information
arddluma committed Feb 27, 2024
1 parent 84e1b31 commit e48ea96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
path: frontend
- name: Get frontend package version
id: get_frontend_version
run: echo frontend_version=$(node -p "require('./frontend/package.json').version") >> $GITHUB_OUTPUT
run: |
cd frontend
echo frontend_version=$(node -p "require('./package.json').version") >> $GITHUB_OUTPUT
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit e48ea96

Please sign in to comment.