Skip to content

Commit

Permalink
Add support for json manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
k0gen authored Nov 30, 2023
1 parent 634db22 commit ad77f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
git submodule update --init --recursive
start-sdk init
make
PACKAGE_ID=$(yq e ".id" manifest.yaml)
mv ${PACKAGE_ID}*s9pk ~/
PACKAGE_ID=$(yq e ".id" manifest.yaml 2>/dev/null || jq -r '.id' manifest.json 2>/dev/null)
mv ${PACKAGE_ID}*.s9pk ~/
shell: bash

- name: Upload .s9pk
Expand Down

0 comments on commit ad77f9d

Please sign in to comment.