Fix GitHub Actions permissions and bump to v1.0.3

- Add 'contents: write' permission to GitHub Actions workflow
- This should fix the 403 error when creating releases
- Bump version to 1.0.3 for testing the fixed workflow
This commit is contained in:
Xheldon 2025-07-31 15:08:47 +08:00
parent d94e386dac
commit 1850f3b895
4 changed files with 6 additions and 3 deletions

View file

@ -8,6 +8,8 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3

View file

@ -1,7 +1,7 @@
{
"id": "git-folder-sync",
"name": "Git Folder Sync",
"version": "1.0.2",
"version": "1.0.3",
"minAppVersion": "0.15.0",
"description": "Synchronize files in your Obsidian Vault with a specified directory in the designated GitHub repository (rather than the entire repository); send your images to cloud storage services.",
"author": "Xheldon",

View file

@ -1,6 +1,6 @@
{
"name": "git-folder-sync",
"version": "1.0.2",
"version": "1.0.3",
"description": "Synchronize files in your Obsidian Vault with a specified directory in the designated GitHub repository (rather than the entire repository); send your images to cloud storage services.",
"main": "main.js",
"scripts": {

View file

@ -1,5 +1,6 @@
{
"1.0.0": "0.15.0",
"1.0.1": "0.15.0",
"1.0.2": "0.15.0"
"1.0.2": "0.15.0",
"1.0.3": "0.15.0"
}