We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df87c0b commit f280bccCopy full SHA for f280bcc
.github/workflows/main.yml
@@ -23,10 +23,11 @@ jobs:
23
sed -i "s/\!release\!/${{ github.run_id }}/" build/rpm.json
24
go-bin-rpm generate -o okql.rpm --version ${{ env.VERSION }} --arch amd64 --file build/rpm.json
25
ls -lah okql.rpm
26
+ cp bin/okql . # copy binary to root folder to be able to use it easily in next step
27
28
- name: Create release
29
uses: ncipollo/release-action@v1
30
with:
- artifacts: "okql.rpm"
31
+ artifacts: "okql.rpm,okql"
32
omitBody: true
33
token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments