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
6 changes: 4 additions & 2 deletions .github/workflows/casper-node-launcher-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-20.04
code_name: focal
- os: ubuntu-22.04
code_name: jammy
- os: ubuntu-24.04
code_name: noble

runs-on: ${{ matrix.os }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/casper-node-launcher-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-20.04
code_name: focal
- os: ubuntu-22.04
code_name: jammy
- os: ubuntu-24.04
code_name: noble

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b #v3.0.2
with:
key: ${{ matrix.code_name }}

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
Expand Down
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-node-launcher"
version = "1.0.6"
version = "1.0.7"
authors = ["Fraser Hutchison <[email protected]>", "Joe Sacher <[email protected]>"]
edition = "2018"
description = "A binary which runs and upgrades the casper-node of the Casper network"
Expand Down Expand Up @@ -29,7 +29,7 @@ tempfile = "3.6.0"

[package.metadata.deb]
name = "casper-node-launcher"
depends = "curl"
depends = "curl, casper-node-util"
revision = "0"
assets = [
["./target/release/casper-node-launcher", "/usr/bin/casper-node-launcher", "755"],
Expand All @@ -46,9 +46,6 @@ Package for Casper Node Launcher

For information on using package, see https://github.com/casper-network/casper-node-launcher
"""

[package.metadata.deb.variants.focal]

[package.metadata.deb.variants.jammy]

[package.metadata.deb.variants.noble]
Expand Down
Loading