Skip to content

Commit f971d7a

Browse files
committed
fix: more workflow fixes
1 parent 32fdeb8 commit f971d7a

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- "*"
7+
workflow_dispatch:
78

89
jobs:
910
build-and-release:
@@ -45,9 +46,11 @@ jobs:
4546
npx vsce package --out ../dist/avrae-ls-client.vsix
4647
4748
- name: Create draft release
48-
if: ${{ success() && steps.build_python.outcome == 'success' && steps.build_vsce.outcome == 'success' }}
49+
if: ${{ success() && steps.build_python.outcome == 'success' &&
50+
steps.build_vsce.outcome == 'success' }}
4951
uses: softprops/action-gh-release@v1
5052
with:
53+
token: ${{ secrets.GH_PAT }}
5154
tag_name: ${{ github.ref_name }}
5255
name: ${{ github.ref_name }}
5356
draft: true

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "avrae-ls"
7-
version = "0.8.5"
7+
version = "0.9.3"
88
description = "Language server for Avrae draconic aliases"
99
authors = [
1010
{ name = "1drturtle" }

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "avrae-ls-client",
33
"displayName": "Avrae Draconic Alias Language Server",
44
"description": "VS Code client for avrae-ls (draconic alias diagnostics and mock execution).",
5-
"version": "0.8.5",
5+
"version": "0.9.3",
66
"engines": {
77
"vscode": "^1.84.0"
88
},

0 commit comments

Comments
 (0)