Skip to content

Commit

Permalink
ci: remove upload-artifacts (#96)
Browse files Browse the repository at this point in the history
* ci: remove upload-artifacts

* just: added cargo install
  • Loading branch information
srdtrk committed Aug 14, 2024
1 parent f6d02a9 commit b158cc8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 72 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
release:
name: build-and-upload
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
Expand Down
71 changes: 0 additions & 71 deletions .github/workflows/upload-artifacts.yml

This file was deleted.

6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ build-contracts:
@echo "Building the contracts..."
forge build

# Install the operator executable using `cargo install` command
install-operator:
@echo "Installing the operator executable..."
cargo install --path operator --locked --force
@echo "Installed the operator executable"

# Run the Solidity tests using `forge test` command
test-foundry:
forge test -vvv
Expand Down

0 comments on commit b158cc8

Please sign in to comment.