This commit is contained in:
2026-03-13 12:06:18 +01:00
parent c041230e20
commit 54c936714e
+4 -3
View File
@@ -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