Build #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build' | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main, release] | |
pull_request: | |
jobs: | |
build-tauri: | |
name: 🐂 Build with Tauri | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential libwebkit2gtk-4.1-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev | |
- name: Install frontend dependencies | |
run: yarn | |
- name: Lint check | |
if: matrix.platform == 'ubuntu-latest' | |
run: yarn lint | |
- name: Build with tauri to test | |
if: github.ref != 'refs/heads/release' | |
uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and publish with tauri | |
if: github.ref == 'refs/heads/release' | |
id: create-release | |
uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version | |
releaseName: 'Emoji Mart v__VERSION__' | |
releaseBody: 'See the assets to download this version and install.' | |
releaseDraft: false | |
prerelease: false | |
outputs: | |
version: ${{ steps.create-release.outputs.version }} | |
build-flatpak: | |
name: 📦️ Build with Flatpak | |
needs: build-tauri | |
runs-on: ubuntu-latest | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:gnome-45 | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: flathub/io.github.vemonet.EmojiMart | |
ref: dev | |
submodules: 'recursive' | |
# - name: Setup node | |
# uses: actions/setup-node@v4 | |
# with: | |
# node-version: 18 | |
- name: Update package version in flatpak manifest | |
env: | |
PACKAGE_VERSION: ${{ needs.build-tauri.outputs.version }} | |
run: | | |
sed -i "s/- --device=dri/- --device=all/g" ./io.github.vemonet.EmojiMart.yml | |
sed -i "s/tag: v[0-9]*\.[0-9]*\.[0-9]*$/tag: v$PACKAGE_VERSION/g" ./io.github.vemonet.EmojiMart.yml | |
sed -i "s/<releases>$/<releases>\\n <release version=\"$PACKAGE_VERSION\" date=\"$(date +%Y-%m-%d)\">\\n <\/release>\\n/g" ./io.github.vemonet.EmojiMart.appdata.xml | |
echo "🏷️ Publishing $PACKAGE_VERSION" | |
# curl -L -o package.json https://raw.github.com/vemonet/EmojiMart/release/package.json | |
# PACKAGE_VERSION=$(node -p "require('./package.json').version") | |
# rm package.json | |
# echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV | |
- name: Build flatpak | |
uses: flatpak/flatpak-github-actions/flatpak-builder@v6 | |
with: | |
bundle: EmojiMart.flatpak | |
manifest-path: io.github.vemonet.EmojiMart.yml | |
cache-key: flatpak-builder-${{ github.sha }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: EmojiMart.flatpak | |
path: EmojiMart.flatpak | |
- name: Update Release | |
if: github.ref == 'refs/heads/release' | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
EmojiMart.flatpak | |
tag_name: v${{ github.env.PACKAGE_VERSION }} |