Skip to content

Commit

Permalink
Update CI-ubuntu.yml [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
smistad authored Dec 15, 2024
1 parent ac9e9bc commit 2aa0144
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/CI-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,21 +110,21 @@ jobs:
cmake --build build --config ${{env.BUILD_TYPE}} --target package -j 4
- name: Upload Debian package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v1
with:
name: Debian package
path: ${{github.workspace}}/build/fast_*.deb
if-no-files-found: error

- name: Upload archive package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v1
with:
name: Archive package (tar.xz)
path: ${{github.workspace}}/build/fast_*.tar.xz
if-no-files-found: error

- name: Upload Python wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v1
with:
name: Python wheel
path: ${{github.workspace}}/build/pyFAST-*.whl
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
runs-on: [self-hosted, linux]
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v1
with:
name: 'Archive package (tar.xz)'
path: ${{github.workspace}}/download/
Expand Down Expand Up @@ -205,7 +205,6 @@ jobs:
needs: [build]
runs-on: [self-hosted, linux]
steps:
- uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 2aa0144

Please sign in to comment.