We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5576d9 commit a03733cCopy full SHA for a03733c
.github/workflows/ci.yaml
@@ -14,6 +14,20 @@ jobs:
14
- name: build
15
run: dpkg-buildpackage -b -us -uc
16
17
+ - name: Create artifact archives
18
+ run: |
19
+ cd debian && rm -rf aldor/DEBIAN && tar zcf aldor-linux-x86_64-${{ github.sha }}.tar.gz aldor/
20
+ mv aldor-linux-x86_64-${{ github.sha }}.tar.gz ../
21
+ mv ../../aldor_1.3.0+20190802_amd64.deb ../
22
+
23
+ - name: Upload Linux binaries
24
+ uses: actions/upload-artifact@v4
25
+ with:
26
+ name: aldor-linux-x86_64-binary
27
+ path: |
28
+ aldor-linux-x86_64-${{ github.sha }}.tar.gz
29
+ aldor_1.3.0+20190802_amd64.deb
30
31
# build-macos:
32
# runs-on: macos-10.15
33
0 commit comments