File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed
Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 2727 echo "Downloading package: $FILENAME"
2828 echo "Version: $VERSION, Branch: $BRANCH_NAME, SHA: $SHORT_SHA"
2929
30- # Download from packman
31- if ./tools/packman/packman pull -r rtx-remix-external "$FILENAME"; then
30+ # Create project.xml for packman pull
31+ cat > project.xml << EOF
32+ <project toolsVersion="7.6">
33+ <dependency name="rtx_remix" copyPath="_artifacts/${FILENAME}">
34+ <package name="rtx_remix" version="${VERSION}+${BRANCH_NAME}.${SHORT_SHA}.gl.windows-x86_64.release" />
35+ </dependency>
36+ </project>
37+ EOF
38+
39+ # Download from packman using project.xml
40+ if ./tools/packman/packman pull project.xml; then
3241 echo "✅ Successfully downloaded $FILENAME"
3342 echo "SHOULD_UPLOAD=true" >> $GITHUB_ENV
3443 echo "FILENAME=$FILENAME" >> $GITHUB_ENV
4150 if : env.SHOULD_UPLOAD == 'true'
4251 uses : actions/upload-artifact@v4
4352 with :
44- name : rtx-remix-package
45- path : ${{ env.FILENAME }}
53+ name : ${{ env.FILENAME }}
54+ path : _artifacts/ ${{ env.FILENAME }}
You can’t perform that action at this time.
0 commit comments