Skip to content

Commit

Permalink
Release process renaming / put on specifioc runners (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
EliSchleifer authored Feb 12, 2024
1 parent bc6aa5d commit ea87b2c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Horton CLI
name: Release Toolbox
on:
workflow_dispatch:
inputs:
Expand All @@ -14,17 +14,17 @@ jobs:
matrix:
include:
- target: x86_64-unknown-linux-gnu
runs-on: ubuntu-20.04
runs-on: [self-hosted, Linux]
- target: aarch64-unknown-linux-gnu
runs-on: ubuntu-20.04
runs-on: [self-hosted, Linux]
- target: x86_64-apple-darwin
runs-on: macos-latest
runs-on: [self-hosted, macOS]
- target: aarch64-apple-darwin
runs-on: macos-latest
runs-on: [self-hosted, macOS]
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable

Expand All @@ -48,11 +48,11 @@ jobs:

tag_and_release:
name: Tag and Release [ ${{ github.event.inputs.release_tag }} ]
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux]
needs: [build]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- id: download
uses: actions/download-artifact@v3
Expand Down

0 comments on commit ea87b2c

Please sign in to comment.