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 909177f commit a6782aaCopy full SHA for a6782aa
.github/workflows/build.yml
@@ -94,6 +94,7 @@ jobs:
94
tags: ${{ steps.meta.outputs.tags }}
95
96
- name: Make github release
97
+ if: github.ref_type == 'tag'
98
uses: "softprops/action-gh-release@v1"
99
id: make-release
100
with:
@@ -104,6 +105,18 @@ jobs:
104
105
target/cortex*.zip
106
target/cortex*.bom.xml
107
108
+ - name: Store artifacts
109
+ if: github.ref_type != 'tag'
110
+ uses: actions/upload-artifact@v3
111
+ with:
112
+ name: packages
113
+ path: |
114
+ target/cortex*.deb
115
+ target/cortex*.rpm
116
+ target/cortex*.zip
117
+ target/cortex*.bom.xml
118
+ retention-days: 5
119
+
120
notify:
121
needs: [ build ]
122
runs-on: [ ubuntu-latest ]
0 commit comments