@@ -103,16 +103,35 @@ jobs:
103103 FEATURES=${{ matrix.features }} make build
104104 VERSION=${{ needs.extract-version.outputs.VERSION }} make build-deb
105105
106- - name : Upload artifacts
106+ - name : Upload rbuilder artifact
107107 uses : actions/upload-artifact@v4
108108 with :
109109 name : rbuilder-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }}
110- path : |
111- target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/rbuilder
112- target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/rbuilder-operator
113- target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/reth-rbuilder
114- target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/bid-scraper
115- target/${{ matrix.configs.target }}/debian/*.deb
110+ path : target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/rbuilder
111+
112+ - name : Upload rbuilder-operator artifact
113+ uses : actions/upload-artifact@v4
114+ with :
115+ name : rbuilder-operator-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }}
116+ path : target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/rbuilder-operator
117+
118+ - name : Upload reth-rbuilder artifact
119+ uses : actions/upload-artifact@v4
120+ with :
121+ name : reth-rbuilder-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }}
122+ path : target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/reth-rbuilder
123+
124+ - name : Upload bid-scraper artifact
125+ uses : actions/upload-artifact@v4
126+ with :
127+ name : bid-scraper-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }}
128+ path : target/${{ matrix.configs.target }}/${{ matrix.configs.profile }}/bid-scraper
129+
130+ - name : Upload *.deb packages
131+ uses : actions/upload-artifact@v4
132+ with :
133+ name : deb-${{ needs.extract-version.outputs.VERSION }}-${{ matrix.configs.target }}${{ matrix.features && '-' }}${{ matrix.features }}
134+ path : target/${{ matrix.configs.target }}/debian/*.deb
116135
117136
118137 draft-release :
0 commit comments