Skip to content

Commit 5814075

Browse files
Merge pull request #331 from originalworks/fix-owen-deployment-workflow-again
Fix owen deployment workflow again
2 parents ce1e888 + 8eb009f commit 5814075

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/_deploy-owen-template.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ jobs:
3030
source $HOME/.cargo/env
3131
3232
- name: "Install dependencies with dnf"
33-
run: dnf install -y gcc gcc-c++ glibc-devel make python3-pip openssl openssl-devel tar gzip git nodejs nasm
33+
run: dnf install -y gcc gcc-c++ glibc-devel make python3-pip openssl openssl-devel tar gzip git nasm
34+
35+
- name: Install Node.js 20
36+
run: |
37+
curl -fsSL https://rpm.nodesource.com/setup_20.x | bash -
38+
dnf install -y nodejs
3439
3540
- name: "Install cargo-lambda"
3641
run: pip3 install cargo-lambda

owen/src/blobs_queue.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1+
use crate::{blob::BlobTransactionData, constants::BLOBS_QUEUE_MESSAGE_GROUP_ID};
12
use alloy::primitives::{Bytes, FixedBytes};
23
use aws_config::{meta::region::RegionProviderChain, BehaviorVersion};
34
use aws_sdk_s3::primitives::ByteStream;
45
use log_macros::log_info;
5-
6-
use crate::{blob::BlobTransactionData, constants::BLOBS_QUEUE_MESSAGE_GROUP_ID};
76
use serde::{Deserialize, Serialize};
87
use sha2::{Digest, Sha256};
98
use std::env;

0 commit comments

Comments
 (0)