Skip to content

Commit 8c1a0ae

Browse files
committed
remove cargo action
1 parent 129e39b commit 8c1a0ae

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

.github/workflows/nightly_release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,8 @@ jobs:
144144
with:
145145
shared-key: ${{ matrix.target.name }}--nightly-release--branch--${{ github.ref }}
146146
- name: Cargo build
147-
uses: actions-rs/[email protected]
148-
with:
149-
command: build
150-
args: --package dotfiles --release --target ${{ matrix.target.name }}
151-
env:
152-
RUSTFLAGS: ${{ matrix.RUSTFLAGS }}
153-
147+
run: |
148+
cargo build --package dotfiles --release --target ${{ matrix.target.name }}
154149
- name: Package common
155150
run: |
156151
mkdir package

.github/workflows/rust_doc_generator.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ jobs:
2020
toolchain: nightly
2121
components: rustfmt, rust-src
2222
- name: Build
23-
uses: actions-rs/[email protected]
24-
with:
25-
command: doc
26-
args: --all --no-deps
27-
23+
run: cargo doc --all --no-deps
2824
- name: Deploy
2925
uses: peaceiris/[email protected]
3026
if: ${{ github.ref == 'refs/heads/main' }}

0 commit comments

Comments
 (0)