Skip to content

Commit

Permalink
remove manifest gen
Browse files Browse the repository at this point in the history
  • Loading branch information
vanosg committed Jan 17, 2024
1 parent 0cff4bf commit ec9c683
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,6 @@ jobs:
fi
done
- name: Generate manifest
run: |
echo "[" > manifest
for dir in src/*; do
if [ -d $dir ]; then
cd "$dir"
name=$(jq -r '.name' manifest.json)
version_major=$(jq -r '.version_major' manifest.json)
version_minor=$(jq -r '.version_minor' manifest.json)
description=$(jq -r '.description' manifest.json)
echo "{\"name\":\"$name\",\"version_major\":\"$version_major\",\"version_minor\":\"$version_minor\",\"description\":\"$description\"}," >> ../../manifest
cd ../..
fi
done
sed -i '$ s/.$//' manifest
echo "]" >> manifest
- name: Commit autoscripts packages
uses: EndBug/add-and-commit@v9
with:
Expand Down

0 comments on commit ec9c683

Please sign in to comment.