Skip to content

Commit

Permalink
rename steps for CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
o2sh committed Dec 24, 2024
1 parent b34c99d commit 46d100c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ jobs:
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Build
- name: Build Release
run: make build

- name: Build Release Mac
- name: Package release for Mac
if: matrix.os == 'macos-latest'
run: make release-mac

- name: Build Release Linux
- name: Package release for Linux
if: matrix.os == 'ubuntu-latest'
run: make release-linux

- name: Build Release Win
- name: Package release for Windows
if: matrix.os == 'windows-latest'
run: make release-win

- name: Release
- name: Publish to GitHub
uses: softprops/action-gh-release@v2
with:
files: |
Expand All @@ -45,7 +45,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Publish to homebrew
- name: Publish to Homebrew
uses: mislav/bump-homebrew-formula-action@v3
if: matrix.os == 'macos-latest'
env:
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,5 @@ jobs:
- name: Build
run: cargo build --features=fail-on-deprecated

- name: Test
- name: Run tests
run: cargo test

- name: Run
run: cargo run

0 comments on commit 46d100c

Please sign in to comment.