This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch main
in repository eradio.
View the commit online.
commit 9a09be72f5a5a9913e1b45bf8b13ee5e5900e826
Author: politebot <[email protected]>
AuthorDate: Sat Oct 11 19:14:32 2025 -0500
version bump, add a release workflow
---
.github/workflows/release.yml | 49 +++++++++++++++++++++++++++++++++++++++++++
configure.ac | 2 +-
2 files changed, 50 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..b53b16c
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,49 @@
+name: Release
+
+on:
+ workflow_dispatch:
+ push:
+ tags:
+ - '*'
+
+jobs:
+ dist:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+
+ - name: Configure dpkg to skip docs
+ run: |
+ sudo mkdir -p /etc/dpkg/dpkg.cfg.d
+ echo "path-exclude /usr/share/doc/*" | sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc
+ echo "path-exclude /usr/share/man/*" | sudo tee -a /etc/dpkg/dpkg.cfg.d/01_nodoc
+
+ - name: Install dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y \
+ build-essential \
+ automake \
+ autoconf \
+ pkg-config \
+ libxml2-dev \
+ libefl-all-dev \
+ libeet-bin \
+ libeina-bin
+
+ - name: Generate build system
+ run: autoreconf --install
+
+ - name: Configure project
+ run: ./configure
+
+ - name: Create source tarball (distcheck)
+ run: make distcheck
+
+ - name: Upload source tarball artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: eradio-src-tarball
+ path: eradio-*.tar.gz
\ No newline at end of file
diff --git a/configure.ac b/configure.ac
index c7a325c..2a88435 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([eradio], [1.0], [])
+AC_INIT([eradio], [0.0.3], [])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_CONFIG_HEADERS([config.h])
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.