Merge branch 'main' into Fix-manifest-not-found-preventing-github-secondary-rate-limit

This commit is contained in:
Siete Frouws 2025-04-02 15:23:16 +02:00
commit 14f2940ea3
2 changed files with 22 additions and 4 deletions

View file

@ -3,7 +3,7 @@ name: Release plugin
on:
push:
tags:
- "[0-9].[0-9]+.[0-9]+"
- "[0-9].[0-9]+.[0-9]+*"
jobs:
build:
@ -27,6 +27,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ github.ref_name }}" \
--title="${{ github.ref_name }}" \
main.js manifest.json styles.css
if [[ "${{ github.ref_name }}" == *-beta ]]; then
gh release create "${{ github.ref_name }}" \
--title="${{ github.ref_name }}" \
--prerelease \
main.js manifest.json styles.css
else
gh release create "${{ github.ref_name }}" \
--title="${{ github.ref_name }}" \
main.js manifest.json styles.css
fi

11
manifest-beta.json Normal file
View file

@ -0,0 +1,11 @@
{
"id": "github-gitless-sync",
"name": "GitHub Gitless Sync",
"version": "1.0.7-beta",
"minAppVersion": "1.7.7",
"description": "Sync a GitHub repository with vaults on different platforms without requiring git installation",
"author": "Silvano Cerza",
"authorUrl": "https://silvanocerza.com",
"fundingUrl": "https://ko-fi.com/silvanocerza",
"isDesktopOnly": false
}