Skip to content

Commit

Permalink
Added cw-orch + Implemented Deploy trait (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayanski authored Jan 8, 2024
1 parent 4fe8677 commit 33bd9ab
Show file tree
Hide file tree
Showing 22 changed files with 4,323 additions and 433 deletions.
5 changes: 5 additions & 0 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[advisories]
# Ignoring two advisories that are introduced by cw-orchestrator.
# They are safe to ignore as cw-orch is excluded from the binary as it's feature flagged.
# Deps that triggered the audit: [tungstenite, webpki]
ignore = ["RUSTSEC-2023-0065","RUSTSEC-2023-0052"]
29 changes: 29 additions & 0 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Builds and commits the artifacts whenever a change is pushed to main.
name: artifact compiler
on:
workflow_dispatch:
push:
branches:
- main

jobs:
release-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: ATiltedTree/setup-rust@v1
with:
rust-version: stable
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Artifacts
run: |
./devtools/optimize.sh
- name: Commit artifacts
run: |
git config --global user.name 'DA0-DA0'
git config --global user.email '[email protected]'
git add artifacts --force
git commit -m "Update artifacts [skip ci]"
git push
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ ci/configs/cosm-orc/local.yaml

contracts/**/Cargo.lock
packages/**/Cargo.lock

# Private env file
.env
Loading

0 comments on commit 33bd9ab

Please sign in to comment.