Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update path after the structure changed. #3091

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/create-release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
AUTHORIZE_UPGRADE_PREFIX: "0x02"
with:
chain: ${{ matrix.chain }}-parachain
runtime_dir: runtime/${{ matrix.chain }}
runtime_dir: parachain/runtime/${{ matrix.chain }}
profile: production

- name: Summary
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

- name: Build docker image
run: |
./scripts/build-docker.sh production ${{ env.RELEASE_TAG }}
./parachain/scripts/build-docker.sh production ${{ env.RELEASE_TAG }}
echo "============================="
docker images

Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
# the key for identity worker enclave shall be renewed when switching to sdk-v2.0.0
- name: Write enclave signing key
run: |
cat << EOF > tee-worker/enclave_key.pem
cat << EOF > tee-worker/identity/enclave_key.pem
${{ secrets.IDENTITY_ENCLAVE_STAGING_SIGNING_KEY }}
EOF

Expand All @@ -198,7 +198,7 @@ jobs:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
context: .
file: tee-worker/build.Dockerfile
file: tee-worker/identity/build.Dockerfile
tags: local-builder:latest
target: builder
build-args: |
Expand All @@ -215,7 +215,7 @@ jobs:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
context: .
file: tee-worker/build.Dockerfile
file: tee-worker/identity/build.Dockerfile
tags: litentry/identity-worker:${{ env.RELEASE_TAG }}
target: worker-release

Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:

- name: Write enclave signing key
run: |
cat << EOF > bitacross-worker/enclave_key.pem
cat << EOF > tee-worker/bitacross/enclave_key.pem
${{ secrets.BITACROSS_ENCLAVE_PROD_SIGNING_KEY }}
EOF

Expand All @@ -266,7 +266,7 @@ jobs:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
context: .
file: bitacross-worker/build.Dockerfile
file: tee-worker/bitacross/build.Dockerfile
tags: local-builder:latest
target: builder
build-args: |
Expand All @@ -283,7 +283,7 @@ jobs:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
context: .
file: bitacross-worker/build.Dockerfile
file: tee-worker/bitacross/build.Dockerfile
tags: litentry/bitacross-worker:${{ env.RELEASE_TAG }}
target: worker-release

Expand Down
Loading