aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-26 16:54:53 +0100
committerEllie Huxtable <e@elm.sh>2021-04-26 18:04:56 +0100
commit9356736ca16c0b575a9408ad23c532e17b8ffccb (patch)
tree3e8544ca34fb509afb810ba1afcc060f382a58a2 /.github/workflows/rust.yml
parentUpdate dependencies properly (diff)
downloadatuin-9356736ca16c0b575a9408ad23c532e17b8ffccb.zip
Release v0.6.3
First proper release! - Update install script - Correct dependencies - Update workflow release script
Diffstat (limited to '')
-rw-r--r--.github/workflows/rust.yml38
1 files changed, 1 insertions, 37 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index d547606b..a67e4330 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -23,17 +23,8 @@ jobs:
override: true
- name: Run cargo build
- run: cargo build --all --release && strip target/release/atuin && mv target/release/atuin target/release/atuin_linux
+ run: cargo build --all --release && strip target/release/atuin
- - name: Release
- uses: softprops/action-gh-release@v1
- if: startsWith(github.ref, 'refs/tags/')
- with:
- files: |
- target/release/atuin_linux
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
test:
runs-on: ubuntu-latest
@@ -80,30 +71,3 @@ jobs:
- name: Format
run: cargo fmt -- --check
-
- build-mac:
- runs-on: macos-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- - name: Install latest rust toolchain
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
- target: x86_64-apple-darwin
- default: true
- override: true
-
- - name: Build for mac
- run: cargo build --all --release && strip target/release/atuin && mv target/release/atuin target/release/atuin_darwin
-
- - name: Release
- uses: softprops/action-gh-release@v1
- if: startsWith(github.ref, 'refs/tags/')
- with:
- files: |
- target/release/atuin_darwin
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}