Skip to content

Commit

Permalink
Merge pull request #17 from Tormak9970/dev
Browse files Browse the repository at this point in the history
chore: fixed libraries used for linux build
  • Loading branch information
Tormak9970 authored Aug 15, 2024
2 parents 0afafc2 + 31174e3 commit febaac2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/candidate-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
create-release:
permissions:
contents: write
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
release_id: ${{ steps.create-release.outputs.result }}
change_log: ${{ steps.changelog.outputs.changelog }}
Expand All @@ -18,18 +18,18 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: release-candidate

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: lts/*

- name: Generate Changelog for Release
id: changelog
uses: Tormak9970/reliable-changelog@v1.1
uses: Tormak9970/reliable-changelog@v2
with:
github-token: ${{ secrets.github_token }}
tag-prefix: "rc-"
Expand Down Expand Up @@ -64,20 +64,20 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04, windows-latest]
platform: [ubuntu-22.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: release-candidate

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 21
node-version: lts/*

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand All @@ -86,10 +86,10 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install Dependencies (Linux Only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install Frontend Dependencies
run: bun install
Expand All @@ -112,7 +112,7 @@ jobs:
needs: [create-release, build-tauri]
permissions:
contents: write
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout Repository
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
create-release:
permissions:
contents: write
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
release_id: ${{ steps.create-release.outputs.result }}
change_log: ${{ steps.changelog.outputs.changelog }}
Expand All @@ -18,16 +18,16 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16
node-version: lts/*

- name: Generate Changelog for Release
id: changelog
uses: Tormak9970/reliable-changelog@v1.1
uses: Tormak9970/reliable-changelog@v2
with:
github-token: ${{ secrets.github_token }}
current-version: "./package.json"
Expand Down Expand Up @@ -60,20 +60,20 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-20.04, windows-latest]
platform: [ubuntu-22.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: release

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 21
node-version: lts/*

- name: Setup Bun
uses: oven-sh/setup-bun@v2
Expand All @@ -82,10 +82,10 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install Dependencies (Linux Only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install Frontend Dependencies
run: bun install
Expand All @@ -108,7 +108,7 @@ jobs:
needs: [create-release, build-tauri]
permissions:
contents: write
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout Repository
Expand Down

0 comments on commit febaac2

Please sign in to comment.