Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
loki077 committed Dec 30, 2024
1 parent fd23920 commit e6c4dfd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/carbonix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -341,12 +341,22 @@ jobs:
echo "Uploading Artifacts to: $PATH_TO_S3"
aws s3 cp final-output/ $PATH_TO_S3 --recursive
- name: Extract file name from xml_file
id: extract_filename
run: |
FILE_NAME=$(basename "${{ matrix.xml_file }}" .xml)
echo "file_name=$FILE_NAME" >> $GITHUB_ENV
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: output-ac-${{ matrix.xml_file }}
name: output-ac-${{ steps.extract_filename.outputs.file_name }}
path: final-output/
retention-days: 15
if-no-files-found: warn
compression-level: 6
overwrite: false
include-hidden-files: false

build-sitl:
runs-on: 'windows-latest'
Expand Down

0 comments on commit e6c4dfd

Please sign in to comment.