Skip to content

Commit

Permalink
feat(cdk): add test to entry point & build solis image
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiss committed May 26, 2024
1 parent 7b65465 commit e5051a6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/arkproject-deploy-contracts-mainnet.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: ArkProject Deploy Contracts & Solis Mainnet

# on: workflow_dispatch
on:
push:
branches:
- feat/solis-cd-efs
# on:
# push:
# branches:
# - feat/solis-cd-efs

jobs:
deploy-solis:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/solis-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:
branches:
- main

# on:
# push:
# branches:
# - feat/solis-cd-efs
on:
push:
branches:
- feat/solis-cd-efs

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ fi
# Ensure the /db directory exists
mkdir -p /efs/mnt/db

# Ensure the /db directory exists
mkdir -p /efs/mnt/db/test

# Check if /db is writable
if [ -w /efs/mnt/db ]; then
echo "/efs/mnt/db is writable."
Expand Down

0 comments on commit e5051a6

Please sign in to comment.