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 27
27
echo "Downloading package: $FILENAME"
28
28
echo "Version: $VERSION, Branch: $BRANCH_NAME, SHA: $SHORT_SHA"
29
29
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
32
41
echo "✅ Successfully downloaded $FILENAME"
33
42
echo "SHOULD_UPLOAD=true" >> $GITHUB_ENV
34
43
echo "FILENAME=$FILENAME" >> $GITHUB_ENV
41
50
if : env.SHOULD_UPLOAD == 'true'
42
51
uses : actions/upload-artifact@v4
43
52
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