From b4cd414d77331a5c0dc27fb6aa7a7cd578682271 Mon Sep 17 00:00:00 2001 From: John Zimmermann Date: Sat, 21 Oct 2023 19:16:59 +0200 Subject: [PATCH] test ci --- .github/workflows/release.yml | 31 +++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..c709a19 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,31 @@ +name: Release + +on: + push: + tags: + - '*' + +jobs: + release: + name: Release + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + + - name: Bootstrap + run: ./bootstrap.sh + + - name: Configure + run: ./configure + + - name: Make dist + run: make dist + + - name: Upload dist to Release + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: obstack-*.tar.gz + tag: ${{ github.ref }} + file_glob: true diff --git a/configure.ac b/configure.ac index 423b427..d519f54 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script AC_PREREQ(2.69) -AC_INIT([obstack], [1.2], [pullmoll@t-online.de]) +AC_INIT([obstack], [1.2.4], [pullmoll@t-online.de]) AM_INIT_AUTOMAKE([1.16]) AC_CONFIG_MACRO_DIR([m4])