Skip to content

Commit 1d8805c

Browse files
authored
Merge pull request #5 from graphqlient/develop
ci: fix release pipeline
2 parents 48359cb + ca2eb80 commit 1d8805c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Install uv
20-
uses: astral-sh/setup-uv@v3
20+
uses: astral-sh/setup-uv@v4
2121

2222
- name: Set up Python 3
2323
run: uv python install 3.12
@@ -42,7 +42,7 @@ jobs:
4242
id: git-cliff
4343
with:
4444
config: cliff.toml
45-
args: --verbose --tag="$QLIENT_NEW_VERSION" --unreleased
45+
args: --verbose --tag="${{ env.QLIENT_NEW_VERSION }}" --unreleased
4646
env:
4747
OUTPUT: CHANGELOG.md
4848

@@ -53,17 +53,17 @@ jobs:
5353
run: |
5454
git config --global user.name 'github-actions[bot]'
5555
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
56-
git tag $QLIENT_NEW_VERSION
57-
git push origin $QLIENT_NEW_VERSION
56+
git tag v${{ env.QLIENT_NEW_VERSION }}
57+
git push origin v${{ env.QLIENT_NEW_VERSION }}
5858
env:
5959
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6060

6161
- name: Create Release
6262
id: create_release
6363
uses: softprops/action-gh-release@v2
6464
with:
65-
tag_name: $QLIENT_NEW_VERSION
66-
name: $QLIENT_NEW_VERSION
65+
tag_name: ${{ env.QLIENT_NEW_VERSION }}
66+
name: ${{ env.QLIENT_NEW_VERSION }}
6767
draft: true
6868
prerelease: true
6969
body_path: CHANGELOG.md

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414

1515
- name: Install uv
16-
uses: astral-sh/setup-uv@v3
16+
uses: astral-sh/setup-uv@v4
1717

1818
- name: Set up Python 3
1919
run: uv python install 3.12

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Install uv
22-
uses: astral-sh/setup-uv@v3
22+
uses: astral-sh/setup-uv@v4
2323
- name: Set up Python ${{ matrix.python-version }}
2424
run: uv python install ${{ matrix.python-version }}
2525
- name: Install the latest version of rye
@@ -29,7 +29,7 @@ jobs:
2929
- name: Run Pytest
3030
run: rye run pytest --cov --cov-report=xml
3131
- name: Upload coverage reports to Codecov
32-
uses: codecov/codecov-action@v4
32+
uses: codecov/codecov-action@v5
3333
with:
3434
token: ${{ secrets.CODECOV_TOKEN }}
3535
- name: Upload coverage reports to DeepSource

0 commit comments

Comments
 (0)