diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 20ebdee..ee8933a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,7 @@ on: jobs: test: runs-on: ubuntu-latest + if: false strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] @@ -107,7 +108,7 @@ jobs: dist/amor*.tar.gz build-windows: - needs: [test] + #needs: [test] runs-on: windows-latest if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "windows", "all_incl_release"]'), github.event.inputs.build-items)) }} @@ -153,10 +154,10 @@ jobs: shell: powershell run: | micromamba activate eos_build - echo "Set tag to $env:RELEASE_TAG" + echo "Set tag to ${{ env.RELEASE_TAG }}" #pyinstaller windows_build.spec #cd dist\eos - #Compress-Archive -Path .\* -Destination "..\..\eos-$env:RELEASE_TAG.zip" + #Compress-Archive -Path .\* -Destination "..\..\eos-${{ env.RELEASE_TAG }}.zip" - name: Update Release if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all_incl_release"]'), github.event.inputs.build-items)) }} uses: actions/gitea-release-action@v1