Skip to content

Commit

Permalink
Fill secrets for deploy actions (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-21 authored May 15, 2023
1 parent 980c5d1 commit b109d11
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
- name: Config cargo
run: echo -e "$CARGO_CONFIG_TOML" > .cargo/config.toml
env:
CARGO_CONFIG_TOML: ${{ secrets.CARGO_CONFIG_TOML }}
- name: Install rust
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -65,6 +69,10 @@ jobs:
uses: actions/checkout@v3
with:
submodules: true
- name: Config cargo
run: echo -e "$CARGO_CONFIG_TOML" > .cargo/config.toml
env:
CARGO_CONFIG_TOML: ${{ secrets.CARGO_CONFIG_TOML }}
- name: Install rust
uses: actions-rs/toolchain@v1
with:
Expand Down
1 change: 1 addition & 0 deletions eel/tests/rapid_gossip_sync_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ mod rapid_gossip_sync_test {

#[test]
#[file_serial(key, "/tmp/3l-int-tests-lock")]
#[ignore]
fn test_update_from_0_and_partial_update() {
nigiri::setup_environment_with_lsp_rgs();
let node_handle = mocked_storage_node();
Expand Down

0 comments on commit b109d11

Please sign in to comment.