Skip to content

Commit

Permalink
test(extension): try 2
Browse files Browse the repository at this point in the history
  • Loading branch information
oldGreg5 committed Jul 15, 2024
1 parent 8c3aaca commit ad78d38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ jobs:
build_extension:
name: Build Lace browser extension
runs-on: ubuntu-22.04
# needs: prepare

steps:
- name: Checkout repository
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/e2e-tests-linux-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ jobs:
ART_ID=$(curl https://api.github.com/repos/input-output-hk/lace/actions/artifacts?name=lace-build-${{ github.sha }} | jq -r .artifacts[0].id)
if [ "$ART_ID" == "null" ]; then
echo "No Lace build artifact found, will build it now"
exit 0
echo "build_exists=false" >> $GITHUB_OUTPUT
else
echo "Lace build artifact found no need to build again"
exit 1
echo "build_exists=true" >> $GITHUB_OUTPUT
fi
- name: Build dist version of Lace
if: success()
if: steps.check-build-exists.outputs.build_exists == 'false'
uses: ./.github/shared/build
with:
LACE_EXTENSION_KEY: ${{ secrets.MANIFEST_PUBLIC_KEY }}
Expand Down

0 comments on commit ad78d38

Please sign in to comment.