Skip to content

Commit

Permalink
more debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
eroux committed Jan 7, 2025
1 parent 0aa1ad1 commit 989ea49
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,36 @@ jobs:

- name: Get version from tag
id: get_version
shell: bash
run: |
echo "release_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
VERSION=${GITHUB_REF#refs/tags/v}
echo "release_version=${VERSION}" >> "$GITHUB_ENV"
echo "release_version=${VERSION}" >> "$GITHUB_OUTPUT"
- name: Check version tag
- name: Debug Info
shell: bash
env:
RELEASE_VERSION: ${{ steps.get_version.outputs.release_version }}
run: |
echo $RELEASE_VERSION
echo ${{ steps.get_version.outputs.release_version }}
echo "GITHUB_REF: ${GITHUB_REF}"
echo "Raw tag: ${GITHUB_REF#refs/tags/v}"
echo "Environment version: ${release_version}"
echo "Step output version: ${{ steps.get_version.outputs.release_version }}"
- name: Debug Windows Path
if: runner.os == 'Windows'
shell: pwsh
run: |
Write-Output "GITHUB_REF: $env:GITHUB_REF"
Write-Output "release_version: $env:release_version"
- name: ccache
uses: hendrikmuhs/[email protected]

- name: Cache Nuitka
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/.nuitka_cache
key: ${{ runner.os }}-nuitka

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 989ea49

Please sign in to comment.