Skip to content

Commit c7ae2f7

Browse files
authored
Merge bc13270 into c3de636
2 parents c3de636 + bc13270 commit c7ae2f7

28 files changed

+2589
-274
lines changed

.github/workflows/pull-request-write.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,18 @@ jobs:
5454
with:
5555
ref: ${{ github.event.pull_request.head.sha }}
5656
persist-credentials: false
57-
- run: |
57+
- name: linting documentation
58+
run: nix run .#lint
59+
- name: building-targets
60+
run: |
5861
mkdir out
59-
nix build --print-build-logs --show-trace --no-update-lock-file
60-
cp ./result/lib/golden_gate_runtime.compact.compressed.wasm ./out
62+
nix build .#poa-runtime --print-build-logs --show-trace --no-update-lock-file
63+
cp ./result/lib/golden_gate_poa_runtime.compact.compressed.wasm ./out
64+
nix build .#pos-runtime --print-build-logs --show-trace --no-update-lock-file
65+
cp ./result/lib/golden_gate_pos_runtime.compact.compressed.wasm ./out
6166
nix build .#golden-gate-node --print-build-logs --show-trace --no-update-lock-file
6267
cp ./result/bin/golden-gate-node ./out
63-
# can add here contracts and oci image, etc
64-
nix run .#lint
65-
68+
# can add here contracts and oci image, etc
6669
- name: action-gh-release
6770
# so we do not allow non team members to do releases
6871
if: ${{ github.event_name == 'push' || (github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.id != env.OCTOLYTICS_DIMENSION_REPOSITORY_ID) || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.id == env.OCTOLYTICS_DIMENSION_REPOSITORY_ID) }}

0 commit comments

Comments
 (0)