From 3342bb47b7f7bcd01192f0bcd5e3c3675e94ba00 Mon Sep 17 00:00:00 2001 From: "Charlton, Scott R" Date: Tue, 14 Sep 2021 22:30:44 -0600 Subject: [PATCH] working on github dist --- .github/workflows/cmake.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index cd193ce5..f1c7b05d 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -52,11 +52,13 @@ jobs: echo DATE=${{ needs.init.outputs.DATE }} replace: + needs: [init] runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 - name: jenkins-dist run: | - /bin/sh jenkins-dist.sh -v ${VER} -r ${REL} -d ${DATE} -pr ${TAG} + /bin/sh jenkins-dist.sh -v ${{ needs.init.outputs.VER }} -r ${{ needs.init.outputs.REL }} -d ${{ needs.init.outputs.DATE }} cd doc && doxygen && cd .. autoreconf -fvi mkdir _build && cd _build && ../configure && make -j 4 distcheck && cd ..