Skip to content

Commit

Permalink
fix release profile (wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeFan committed Dec 22, 2024
1 parent adbe70b commit 4cb2c92
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ jobs:
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
run: cargo install trunk
- name: install trunk
run: |
rustup target add wasm32-unknown-unknown
cargo install trunk
- uses: tauri-apps/tauri-action@v0
env:
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/test_openssl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build with OpenSSL

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Install OpenSSL
run: |
choco install openssl
# Add OpenSSL to PATH
echo "C:\Program Files\OpenSSL-Win64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Verify OpenSSL installation
run: |
openssl version

0 comments on commit 4cb2c92

Please sign in to comment.