ci: add release workflow

[skip ci]

Change-Id: Ie844d0a01a6e0f8975540cabf3b27db3c1d35a44
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index fdf76cb..6e8a4f1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,6 +1,8 @@
 name: CI
 on:
   push:
+    branches:
+      - '**'
     paths-ignore:
       - '*.conf.sample*'
       - 'Dockerfile'
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..b736056
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,15 @@
+name: Release
+on:
+  push:
+    tags:
+      - 'ndn-cxx-[0-9]+*'
+  workflow_dispatch:
+
+permissions:
+  attestations: write
+  contents: write
+  id-token: write
+
+jobs:
+  release:
+    uses: named-data/actions/.github/workflows/release.yml@v1