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 851aed6 commit 14c6e81Copy full SHA for 14c6e81
.github/workflows/dnmtools_distcheck_ubuntu.yml
@@ -14,6 +14,12 @@ jobs:
14
- uses: actions/checkout@v4
15
with:
16
submodules: recursive
17
+ - name: Get version number
18
+ id: vn
19
+ run: |
20
+ awk '/AC_INIT/ {print "vn="$2}' configure.ac | sed "s/\[//; s/\]//; s/,//" >> "$GITHUB_OUTPUT"
21
+ env:
22
+ GH_TOKEN: ${{ github.token }}
23
- name: Update packages
24
run: sudo apt-get update
25
- name: Install dependencies
@@ -22,5 +28,12 @@ jobs:
28
run: ./autogen.sh
29
- name: configure
30
run: ./configure
31
+ - name: Generate the source archive
32
+ run: make dist
33
+ - name: Upload the archive
34
+ uses: actions/upload-artifact@v4
35
+ with:
36
+ name: dnmtools-${{ steps.vn.outputs.vn }}.tar.gz
37
+ path: dnmtools-${{ steps.vn.outputs.vn }}.tar.gz
38
- name: make distcheck
26
39
run: make -j4 distcheck
0 commit comments