Skip to content

Commit

Permalink
fix: Added file existance output
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinshahfws committed Aug 27, 2024
1 parent a9398e4 commit 85ec06f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ jobs:
const path = './src/sdks/core/dist/lib/firebolt.mjs';
return fs.existsSync(path);
- name: File Existence Output
run: echo "File exists: ${{ steps.check_file.outputs.result }}"
run: |
echo "File exists: ${{ steps.check_file.outputs.result }}"
- name: Get version from package.json
run: |
RELEASE_VERSION=$(node -p "require('./package.json').version")
Expand Down

0 comments on commit 85ec06f

Please sign in to comment.