diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e69de29..0e1c60b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -0,0 +1,34 @@ +name: Release Obsidian plugin + +on: + push: + tags: + - "*" + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: "18.x" + + - name: Build plugin + run: | + npm install + npm run build + + - name: Create release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + tag="${GITHUB_REF#refs/tags/}" + + gh release create "$tag" \ + --title="$tag" \ + --draft \ + main.js manifest.json styles.css \ No newline at end of file diff --git a/manifest.json b/manifest.json index 16c8b45..d4a7c76 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "vcs-sync", "name": "VCSync", - "version": "1.0.0", + "version": "alpha", "minAppVersion": "0.15.0", "description": "Extremely simplified Git syncing for Obsidian with the push of a button.", "author": "Ruru",