We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec7d9d3 commit 4922234Copy full SHA for 4922234
.github/workflows/release.yml
@@ -34,16 +34,16 @@ jobs:
34
- name: Get previous commit SHA
35
run: echo "sha=$(git rev-parse --verify --quiet HEAD^)" >> $GITHUB_ENV
36
37
+ - name: Install dependencies
38
+ run: uv sync -p ${{ env.DEFAULT_PYTHON_VERSION }} --frozen
39
+
40
- name: Detect and tag new version
41
id: check-version
42
if: ${{ env.sha }}
43
uses: salsify/action-detect-and-tag-new-version@v2
44
with:
45
version-command: uvx --from=toml-cli toml get --toml-path=pyproject.toml project.version
46
- - name: Install dependencies
- run: uv sync -p ${{ env.DEFAULT_PYTHON_VERSION }} --frozen
-
47
- name: Bump version for dev release
48
if: "! steps.check-version.outputs.tag"
49
run: |
0 commit comments