From 49ce0da0290e18b3fbf8cc50197207c3ee9d897c Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 5 Jul 2026 13:17:32 +0100 Subject: [PATCH] Remove unsupported zip release artifact --- .github/workflows/release.yml | 10 ---------- README.md | 4 ++-- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b8d91e2..e9163d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,14 +58,6 @@ jobs: test -f manifest.json test -f styles.css - - name: Package plugin zip - run: | - PLUGIN_ID="$(node -p "require('./manifest.json').id")" - mkdir -p "release/$PLUGIN_ID" - cp main.js manifest.json styles.css "release/$PLUGIN_ID/" - cd release - zip -r "$PLUGIN_ID.zip" "$PLUGIN_ID" - - name: Attest release assets uses: actions/attest-build-provenance@v2 with: @@ -73,7 +65,6 @@ jobs: main.js manifest.json styles.css - release/*.zip - name: Publish GitHub release uses: softprops/action-gh-release@v2 @@ -83,5 +74,4 @@ jobs: main.js manifest.json styles.css - release/*.zip generate_release_notes: true diff --git a/README.md b/README.md index 07d96fd..b8b66cb 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ A powerful set of panels located below the calendar. All tabs can be reordered v ### Manual Installation -1. Download the zip file containing the `main.js`, `manifest.json` and Theme files from the latest [GitHub release](https://github.com/fikte/calendar-period-week-notes/releases/). +1. Download `main.js`, `manifest.json`, and `styles.css` from the latest [GitHub release](https://github.com/fikte/calendar-period-week-notes/releases/). 2. Create a new folder named `Calendar Period Week Notes` inside your vault's plugin folder: `/.obsidian/plugins/`, (you may need to show hidden files for your operating system to view this) 3. Copy the downloaded files into this new folder. 4. Reload Obsidian, then go to **Settings** > **Community Plugins** and enable it. @@ -449,7 +449,7 @@ Releases are published with GitHub Actions when a semantic version tag is pushed git push origin 1.9.1 ``` -3. GitHub Actions builds the plugin and publishes a release containing `main.js`, `manifest.json`, `styles.css`, and a zipped plugin folder. +3. GitHub Actions builds the plugin and publishes a release containing `main.js`, `manifest.json`, and `styles.css`. The release tag must match the version in `package.json` and `manifest.json`. Tags use `1.9.1` format, not `v1.9.1`.