Skip to content

Commit

Permalink
bump release v0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
leet4tari committed Aug 3, 2024
2 parents 8ab59e0 + b418c45 commit a7516a5
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 7 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,19 @@ concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: ${{ !startsWith(github.ref, 'refs/tags/v') || github.ref != 'refs/heads/development' || github.ref != 'refs/heads/nextnet' || github.ref != 'refs/heads/stagenet' }}

permissions: {}

jobs:
clippy:
name: clippy
runs-on: [ ubuntu-latest ]
steps:
- name: checkout
uses: actions/checkout@v4

- name: created empty dist dir
run: "mkdir dist"
run: |
mkdir dist
- name: install dependencies (linux)
if: startsWith(runner.os,'Linux')
Expand All @@ -44,14 +48,18 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt

- name: cache cargo files and outputs
if: ${{ ( startsWith(runner.environment,'github-hosted') ) && ( ! startsWith(github.ref, 'refs/tags/v') ) }}
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'

- name: cargo format
working-directory: ./src-tauri
run: cargo fmt --all -- --check
run: |
cargo fmt --all -- --check
- name: clippy check (with lints)
working-directory: ./src-tauri
run: |
Expand All @@ -64,15 +72,18 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4

- name: toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt

- name: cache cargo files and outputs
if: ${{ ( startsWith(runner.environment,'github-hosted') ) && ( ! startsWith(github.ref, 'refs/tags/v') ) }}
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'

- name: cargo machete
working-directory: ./src-tauri
run: |
Expand Down Expand Up @@ -102,11 +113,14 @@ jobs:
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt

- name: cache cargo files and outputs
if: ${{ ( startsWith(runner.environment,'github-hosted') ) && ( ! startsWith(github.ref, 'refs/tags/v') ) }}
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'

- name: cargo check
working-directory: ./src-tauri
run: cargo check --release --all-targets --workspace --locked
run: |
cargo check --release --all-targets --workspace --locked
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ name: Release
push:
paths-ignore:
- '**/*.md'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
# tags:
# - 'v[0-9]+.[0-9]+.[0-9]+'
branches:
- 'release'
- 'build-*'
Expand All @@ -29,7 +29,7 @@ jobs:
matrix:
include:
# - platform: 'ubuntu-20.04'
# args: ''
# args: ''
- platform: 'windows-2019'
args: ''
- platform: 'macos-latest'
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "tari-universe",
"version": "0.1.14"
"version": "0.1.13"
},
"tauri": {
"updater": {
Expand Down

0 comments on commit a7516a5

Please sign in to comment.