Skip to content

Commit

Permalink
build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Obijuan committed Dec 2, 2021
1 parent 3e671c9 commit d5a655b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ jobs:
with:
ref: master

#-- Read the package.json file
- name: Read the package.json file
id: icestudio_json
run: |
content=`cat package.json`
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
echo "::set-output name=packageJson::$content"
# -- Debug: Print the icestudio version
- name: Get the Icestudio version
env:
Expand Down Expand Up @@ -71,16 +81,6 @@ jobs:
export DISPLAY=:0.0
npm run buildLinux64
#-- Read the package.json file
- name: Read the package.json file
id: icestudio_json
run: |
content=`cat package.json`
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
echo "::set-output name=packageJson::$content"
#-- Create the Release
- name: Create the Stable Release
id: create_release
Expand Down

0 comments on commit d5a655b

Please sign in to comment.