Skip to content

Commit

Permalink
9.7
Browse files Browse the repository at this point in the history
Build: Update aws sdk's to production version
MassivDash authored Mar 6, 2024

Verified

This commit was signed with the committer’s verified signature.
myii Imran Iqbal
2 parents 744eb71 + a29a750 commit 43158cd
Showing 18 changed files with 788 additions and 496 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'publish'
name: "publish"
on:
push:
branches:
@@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest,ubuntu-latest, windows-latest]
platform: [macos-latest, ubuntu-latest, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
@@ -34,8 +34,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'App v__VERSION__latest_os'
releaseBody: 'See the assets to download this version and install.'
releaseName: "App v__VERSION__latest_os"
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false

@@ -46,14 +46,14 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-20.04, windows-1809]

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: install dependencies (ubuntu only)
@@ -68,7 +68,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'App v__VERSION__lagacy_os'
releaseBody: 'See the assets to download this version and install.'
releaseName: "App v__VERSION__lagacy_os"
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
11 changes: 3 additions & 8 deletions .github/workflows/test_on_pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'test-on-pr'
name: "test-on-pr"
on: [pull_request]

jobs:
@@ -14,7 +14,7 @@ jobs:
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: install dependencies (ubuntu only)
@@ -30,7 +30,7 @@ jobs:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1 # optional
- name: Build the releases
- name: Build the releases
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -40,8 +40,3 @@ jobs:
run: |
cd src-tauri
cargo test
Loading

0 comments on commit 43158cd

Please sign in to comment.