Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/pyinstaller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,15 @@ jobs:
version: ${{ inputs.version }}
initpy-files: ${{ inputs.version-file }}

- name: "Debug Version"
continue-on-error: true
shell: bash
- name: "Update UV Version"
if: ${{ inputs.version }}
run: |
uv version ${{ inputs.version }}
echo "::group::${{ inputs.version-file }}"
cat ${{ inputs.version-file }}
echo "::endgroup::"

- name: "Version"
- name: "Parse Version"
# Note: packaging is not available on macos-latest by default
if: ${{ matrix.os == 'windows-latest' && inputs.windows-file }}
id: version
Expand All @@ -108,7 +110,7 @@ jobs:
uvx toml-run win-version -- --version "${{ env.version }}"

- name: "Debug Windows Version"
if: ${{ matrix.os == 'windows-latest' }}
if: ${{ matrix.os == 'windows-latest' && inputs.windows-file }}
continue-on-error: true
shell: bash
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,13 @@ jobs:
version: ${{ inputs.version }}
initpy-files: ${{ inputs.version-file }}

- name: "Debug Version"
continue-on-error: true
- name: "Update UV Version"
if: ${{ inputs.version }}
run: |
uv version ${{ inputs.version }}
echo "::group::${{ inputs.version-file }}"
cat ${{ inputs.version-file }}
echo "::endgroup::"

# https://documentation.ubuntu.com/snapcraft/stable/how-to/crafting/configure-package-information/#configure-package-information
- name: "Update Snap Version"
Expand Down
Loading