Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b056271da7 | |||
| 189256edd7 | |||
| 62d3502f99 | |||
| cb218f2b29 | |||
| 871f626555 | |||
| 9a20152a70 |
39
.github/workflows/build.yml
vendored
39
.github/workflows/build.yml
vendored
@@ -4,6 +4,7 @@ on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*.*.*'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-linux:
|
||||
@@ -79,3 +80,41 @@ jobs:
|
||||
with:
|
||||
name: ren-browser-apk
|
||||
path: build/apk
|
||||
|
||||
create-release:
|
||||
needs: [build-linux, build-android]
|
||||
runs-on: ubuntu-latest
|
||||
if: startsWith(github.ref, 'refs/tags/')
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
||||
|
||||
- name: Download Linux artifact
|
||||
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3d2d08f
|
||||
with:
|
||||
name: ren-browser-linux
|
||||
path: ./artifacts/linux
|
||||
|
||||
- name: Download APK artifact
|
||||
uses: actions/download-artifact@f44cd7b40bfd40b6aa1cc1b9b5b7bf03d3d2d08f
|
||||
with:
|
||||
name: ren-browser-apk
|
||||
path: ./artifacts/apk
|
||||
|
||||
- name: Create draft release
|
||||
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836
|
||||
with:
|
||||
draft: true
|
||||
files: |
|
||||
./artifacts/linux/**/*
|
||||
./artifacts/apk/**/*
|
||||
name: Release ${{ github.ref_name }}
|
||||
tag_name: ${{ github.ref_name }}
|
||||
body: |
|
||||
## Release ${{ github.ref_name }}
|
||||
|
||||
This release contains:
|
||||
- Linux binary package
|
||||
- Android APK package
|
||||
@@ -6,8 +6,6 @@ Target platforms: Web, Linux, Windows, MacOS, Android, iOS.
|
||||
|
||||
Built using [Flet](https://flet.dev/).
|
||||
|
||||
Currently, you can find `Linux` and `Android` builds in action artifacts in the [GitHub Actions](https://github.com/Sudo-Ivan/Ren-Browser/actions/workflows/build.yml) page, click on the latest workflow run. More platforms will be added in the future.
|
||||
|
||||
## Renderers
|
||||
|
||||
- Micron (default) (WIP)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "ren-browser"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
description = "A browser for the Reticulum Network."
|
||||
authors = [
|
||||
{name = "Sudo-Ivan"}
|
||||
@@ -34,3 +34,6 @@ pytest-cov = "^7.0.0"
|
||||
pytest-mock = "^3.15.1"
|
||||
pytest-asyncio = "^1.2.0"
|
||||
|
||||
[tool.flet.flutter.pubspec.dependency_overrides]
|
||||
webview_flutter_android = "4.10.1"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user