Skip to content

Commit

Permalink
fix: publios,ymal
Browse files Browse the repository at this point in the history
  • Loading branch information
domiSchenk committed Jul 12, 2021
1 parent 53211b3 commit ec12954
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v2
- name: Yarn Cache
uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -41,15 +42,16 @@ jobs:
# with:
# working-directory: ./src-tauri

- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Cargo Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: install Rust stable
uses: actions-rs/toolchain@v1
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "app"
name = "Commandos"
version = "0.5.3"
description = "Commandos a multi git repo client"
description = "Commandos is a multi git repo client"
authors = [ "Dominik Schenk" ]
license = ""
repository = ""
Expand Down

0 comments on commit ec12954

Please sign in to comment.