Skip to content

Commit

Permalink
release action spacesprotocol#20
Browse files Browse the repository at this point in the history
  • Loading branch information
randomlogin committed Oct 22, 2024
1 parent 5bd9701 commit 4e52bd3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Dynamically create a tag from the pushed version
- name: Get the tag name
Expand All @@ -20,9 +20,7 @@ jobs:
echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Build release binary
run: cargo build --release
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release-macos-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Dynamically create a tag from the pushed version
- name: Get the tag name
Expand All @@ -20,9 +20,7 @@ jobs:
echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Build release binary
run: cargo build --release
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release-macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Dynamically create a tag from the pushed version
- name: Get the tag name
Expand All @@ -20,9 +20,7 @@ jobs:
echo "TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Build release binary
run: cargo build --release
Expand Down

0 comments on commit 4e52bd3

Please sign in to comment.