Skip to content

Commit 9bc55af

Browse files
committed
fix workflow bump 0.1.7
1 parent cef5236 commit 9bc55af

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
platform: [macos-latest, ubuntu-20.04, windows-latest]
9+
platform: [macos-latest, ubuntu-latest, windows-latest]
1010

1111
runs-on: ${{ matrix.platform }}
1212
steps:
@@ -21,7 +21,7 @@ jobs:
2121
uses: dtolnay/rust-toolchain@stable
2222

2323
- name: Install dependencies (ubuntu only)
24-
if: matrix.platform == 'ubuntu-20.04'
24+
if: matrix.platform == 'ubuntu-latest'
2525
run: |
2626
sudo apt-get update
2727
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
@@ -30,7 +30,7 @@ jobs:
3030
run: yarn
3131

3232
- name: Lint check
33-
if: matrix.platform == 'ubuntu-20.04'
33+
if: matrix.platform == 'ubuntu-latest'
3434
run: yarn lint
3535

3636
- name: Build the app

.github/workflows/release.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
platform: [macos-latest, ubuntu-20.04, windows-latest]
18+
platform: [macos-latest, ubuntu-latest, windows-latest]
1919

2020
runs-on: ${{ matrix.platform }}
2121
steps:
@@ -30,7 +30,7 @@ jobs:
3030
uses: dtolnay/rust-toolchain@stable
3131

3232
- name: Install dependencies (ubuntu only)
33-
if: matrix.platform == 'ubuntu-20.04'
33+
if: matrix.platform == 'ubuntu-latest'
3434
run: |
3535
sudo apt-get update
3636
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
@@ -39,7 +39,7 @@ jobs:
3939
run: yarn
4040

4141
- name: Lint check
42-
if: matrix.platform == 'ubuntu-20.04'
42+
if: matrix.platform == 'ubuntu-latest'
4343
run: yarn lint
4444

4545
- name: Build and publish with tauri
@@ -55,10 +55,11 @@ jobs:
5555

5656
publish-flatpak:
5757
needs: publish-tauri
58-
permissions:
59-
contents: write
58+
runs-on: ubuntu-latest
59+
container:
60+
image: bilelmoussaoui/flatpak-github-actions:gnome-44
61+
options: --privileged
6062

61-
runs-on: ubuntu-20.04
6263
steps:
6364
- uses: actions/checkout@v3
6465
with:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "emoji-mart-app",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"license": "MIT",
55
"description": "Emoji picker for desktop. Built with the Emoji Mart web component, and packaged as a tauri app.",
66
"type": "module",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emoji-mart-app"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
description = "Emoji picker for desktop. Built with the Emoji Mart web component, and packaged as a tauri app."
55
authors = ["Vincent Emonet"]
66
license = ""

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "EmojiMart",
11-
"version": "0.1.6"
11+
"version": "0.1.7"
1212
},
1313
"tauri": {
1414
"allowlist": {

0 commit comments

Comments
 (0)