Skip to content

Commit

Permalink
Reorder steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
DFINITYManu committed Aug 22, 2024
1 parent f427b14 commit b972cea
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/rollout-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Move backend files to source root
run: mv -f rollout-dashboard/server/* .
- name: Cache Cargo stuff for faster execution
uses: actions/cache@v3
with:
key: cargo-home
key: cargo-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Move backend files to source root
run: mv -f rollout-dashboard/server/* .
- name: Cache target deps for faster execution
uses: actions/cache@v3
with:
key: target-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
path: |
target
- name: Security audit
uses: actions-rs/audit-check@v1
with:
Expand Down

0 comments on commit b972cea

Please sign in to comment.