mirror of
https://github.com/silvanocerza/github-gitless-sync.git
synced 2026-07-22 12:10:28 +00:00
Merge branch 'main' into Fix-manifest-not-found-preventing-github-secondary-rate-limit
This commit is contained in:
commit
14f2940ea3
2 changed files with 22 additions and 4 deletions
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
|
|
@ -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
11
manifest-beta.json
Normal 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
|
||||
}
|
||||
Loading…
Reference in a new issue