Skip to content
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/cpp-python-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -392,12 +392,12 @@ jobs:
repository: JSBSim-Team/jsbsim-logo
path: jsbsim-logo
- name: Download binary file for JSBSim.iss
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: Matlab-SFunction-Windows.binaries
path: build
- name: Download JSBSim library and executable
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: Windows.binaries
- name: Update the version of JSBSim in matlab/README.md
Expand Down Expand Up @@ -566,7 +566,7 @@ jobs:
- name: Install Python packages
run: pip install -U cython 'numpy>=1.20' mypy
- name: Download source package
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: macOS.binaries
- name: Build Python module from sources (Linux & MacOSX)
Expand Down Expand Up @@ -629,7 +629,7 @@ jobs:
perl -i -pe 's/^(GENERATE_HTML\s*=\s*)YES/\1NO/g' doc/JSBSim.dox.in
perl -i -pe 's/^(HAVE_DOT\s*=\s*)YES/\1NO/g' doc/JSBSim.dox.in
- name: Download source package
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: macOS.binaries
- name: Configure JSBSim (BSD/Unix)
Expand Down Expand Up @@ -737,7 +737,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- name: Download files
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
- name: Prepare files
run: |
mkdir dist
Expand Down Expand Up @@ -771,7 +771,7 @@ jobs:
id-token: write # Mandatory for PyPI trusted publishing
steps:
- name: Download files
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
- name: Prepare files for deployment
run: |
find . -type f -name MSVC_version.txt -exec cp {} . \;
Expand Down Expand Up @@ -911,7 +911,7 @@ jobs:
mkdir build && cd build
cmake ..
- name: Download Python wheels
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ubuntu-latest-Wheels.binaries
path: build
Expand Down
Loading