Skip to content

Commit 0b9fb7d

Browse files
authored
Updates for Release (#1)
1 parent 31140f7 commit 0b9fb7d

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/pyinstaller.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,15 @@ jobs:
7777
version: ${{ inputs.version }}
7878
initpy-files: ${{ inputs.version-file }}
7979

80-
- name: "Debug Version"
81-
continue-on-error: true
82-
shell: bash
80+
- name: "Update UV Version"
81+
if: ${{ inputs.version }}
8382
run: |
83+
uv version ${{ inputs.version }}
84+
echo "::group::${{ inputs.version-file }}"
8485
cat ${{ inputs.version-file }}
86+
echo "::endgroup::"
8587
86-
- name: "Version"
88+
- name: "Parse Version"
8789
# Note: packaging is not available on macos-latest by default
8890
if: ${{ matrix.os == 'windows-latest' && inputs.windows-file }}
8991
id: version
@@ -108,7 +110,7 @@ jobs:
108110
uvx toml-run win-version -- --version "${{ env.version }}"
109111
110112
- name: "Debug Windows Version"
111-
if: ${{ matrix.os == 'windows-latest' }}
113+
if: ${{ matrix.os == 'windows-latest' && inputs.windows-file }}
112114
continue-on-error: true
113115
shell: bash
114116
run: |

.github/workflows/snapcraft.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,13 @@ jobs:
5656
version: ${{ inputs.version }}
5757
initpy-files: ${{ inputs.version-file }}
5858

59-
- name: "Debug Version"
60-
continue-on-error: true
59+
- name: "Update UV Version"
60+
if: ${{ inputs.version }}
6161
run: |
62+
uv version ${{ inputs.version }}
63+
echo "::group::${{ inputs.version-file }}"
6264
cat ${{ inputs.version-file }}
65+
echo "::endgroup::"
6366
6467
# https://documentation.ubuntu.com/snapcraft/stable/how-to/crafting/configure-package-information/#configure-package-information
6568
- name: "Update Snap Version"

0 commit comments

Comments
 (0)