Skip to content

Commit

Permalink
chore: release trials -1 (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeeshan Lakhani committed Jan 19, 2024
1 parent 33bc4ad commit 88b4115
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ concurrency:

jobs:
binary-builds:
if: startsWith(github.event.release.name, 'homestar-runtime')
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -100,6 +101,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

npm-publish:
if: startsWith(github.event.release.name, 'homestar-runtime')
needs: binary-builds
runs-on: ubuntu-latest
strategy:
Expand Down
3 changes: 1 addition & 2 deletions homestar-workflow/src/linkmap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
use fxhash::FxBuildHasher;
use indexmap::IndexMap;
use libipld::Cid;
use serde::{Deserialize, Serialize};

/// Generic link, cid => T [IndexMap] for storing
/// invoked, raw values in-memory and using them to
/// resolve other steps within a runtime's workflow.
///
/// [IndexMap]: IndexMap
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[derive(Debug, Clone, PartialEq)]
pub struct LinkMap<T>(IndexMap<Cid, T, FxBuildHasher>);

impl<T> Default for LinkMap<T> {
Expand Down

0 comments on commit 88b4115

Please sign in to comment.