We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53f9371 commit fbd52a6Copy full SHA for fbd52a6
.github/workflows/ci.yml
@@ -74,7 +74,14 @@ jobs:
74
fail-fast: false
75
matrix:
76
include: ${{ fromJson(needs.prepare-binaries.outputs.includes) }}
77
+ env:
78
+ DESTDIR: ./bin
79
steps:
80
+ - name: Prepare
81
+ run: |
82
+ platform=${{ matrix.platforms }}
83
+ echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
84
+
85
- name: Checkout
86
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
87
with:
@@ -91,6 +98,13 @@ jobs:
91
98
set: |
92
99
*.platform=${{ matrix.platforms }}
93
100
101
+ - name: Upload artifacts
102
+ uses: actions/upload-artifact@v4
103
+ with:
104
+ name: cagent-${{ env.PLATFORM_PAIR }}
105
+ path: ${{ env.DESTDIR }}/*
106
+ if-no-files-found: error
107
94
108
build-image:
95
109
needs:
96
110
- validate
0 commit comments