Try making ubuntu build dependent on creating release first, add test with new datafiles
Unit Testing / test (3.11) (push) Successful in 54s
Unit Testing / test (3.8) (push) Successful in 52s
Unit Testing / test (3.10) (push) Successful in 1m3s
Unit Testing / test (3.12) (push) Successful in 1m4s
Unit Testing / test (3.9) (push) Successful in 1m1s

This commit is contained in:
2026-07-09 16:42:51 +02:00
parent 3056c7cfea
commit 70e29e9629
5 changed files with 136 additions and 5 deletions
+2 -5
View File
@@ -73,7 +73,7 @@ jobs:
body_path: git_changes.log
build-ubuntu-latest:
needs: [test]
needs: [release]
runs-on: ubuntu-latest
if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "linux", "all_incl_release"]'), github.event.inputs.build-items)) }}
permissions:
@@ -97,9 +97,6 @@ jobs:
twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }} --skip-existing
this_tag=$(python -c "import eos;print('v'+eos.__version__)")
echo "RELEASE_TAG=$this_tag" >> $GITHUB_ENV
- name: Sleep 30s
run: |
sleep 30
- 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
@@ -110,7 +107,7 @@ jobs:
dist/amor*.tar.gz
build-windows:
needs: [test]
needs: [release]
runs-on: windows-latest
if: ${{ (github.event_name != 'workflow_dispatch') || (contains(fromJson('["all", "windows", "all_incl_release"]'), github.event.inputs.build-items)) }}