Skip to content

Commit

Permalink
add rustup update step to Release action
Browse files Browse the repository at this point in the history
  • Loading branch information
prixt committed Feb 17, 2020
1 parent 0110062 commit 745e85c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@master

- name: Update Rustup
- name: Rustup Update
run: rustup update

- name: Install dependencies (Linux)
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ jobs:
id: tag_name
uses: olegtarasov/get-tag@v1

- name: Rustup Update
run: rustup update

- name: Cargo Build
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -109,6 +112,9 @@ jobs:
id: tag_name
uses: olegtarasov/get-tag@v1

- name: Rustup Update
run: rustup update

- name: Cargo Build
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -149,6 +155,9 @@ jobs:
id: tag_name
uses: olegtarasov/get-tag@v1

- name: Rustup Update
run: rustup update

- name: Cargo Build
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 745e85c

Please sign in to comment.