Skip to content

Commit eb85518

Browse files
committed
Ensure release workflows are generated and workflows are updated
1 parent 21b1a5d commit eb85518

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/codeql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
steps:
2424
- name: Checkout Repository
2525
uses: actions/checkout@v4
26-
- name: Set up Python 3.11
26+
- name: Set up Python 3.12
2727
id: setup-python
2828
uses: actions/setup-python@v4
2929
with:
30-
python-version: '3.11'
30+
python-version: '3.12'
3131
- name: Set up Poetry
3232
uses: Gr1N/setup-poetry@v8
3333
- name: Cache Poetry

.github/workflows/lint.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,16 @@ jobs:
4040
- name: Install Poetry Dependencies
4141
if: steps.cache-poetry.outputs.cache-hit != 'true'
4242
run: |
43-
poetry install --with dev
43+
poetry install
44+
45+
- name: Install Pyright and Ruff
46+
run: |
47+
pip install --upgrade pyright ruff
4448
4549
- name: Run Pyright
4650
run: |
47-
poetry run pyright bot
51+
pyright bot
4852
4953
- name: Run Ruff
5054
run: |
51-
poetry run ruff bot
55+
ruff bot

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Release New Version
2424
uses: ncipollo/release-action@v1
2525
with:
26-
bodyFile: "changelog.md"
26+
body: "https://github.com/transprogrammer/rodhaj/compare/${{ steps.tag_version.outputs.tag }}...${{ steps.tag_version.outputs.new_tag }}"
2727
token: ${{ secrets.PAT_TOKEN }}
2828
tag: ${{ steps.tag_version.outputs.new_tag }}
2929
name: ${{ steps.tag_version.outputs.new_tag }}

0 commit comments

Comments
 (0)