Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions .github/workflows/package-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Package Release
on:
push:
branches:
- main
jobs:
release:
uses: rainlanguage/rainix/.github/workflows/rainix-autopublish.yaml@main
with:
crate: rain-error-decoding
secrets: inherit
53 changes: 0 additions & 53 deletions .github/workflows/publish.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .github/workflows/rainix-rs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: rainix-rs
on: [push]
jobs:
rainix-rs:
uses: rainlanguage/rainix/.github/workflows/rainix-rs.yaml@main
secrets: inherit
54 changes: 0 additions & 54 deletions .github/workflows/rainix.yaml

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store
/target
.direnv/
# generated by git-hooks-nix on `nix develop`
.pre-commit-config.yaml
131 changes: 103 additions & 28 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
description = "Flake for development workflows.";

inputs = {
rainix.url = "github:rainprotocol/rainix";
rainix.url = "github:rainlanguage/rainix";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { self, flake-utils, rainix }:
outputs =
{
flake-utils,
rainix,
...
}:
flake-utils.lib.eachDefaultSystem (system: {
packages = rainix.packages.${system};
devShells = rainix.devShells.${system};
Expand Down
Loading