Skip to content

Commit

Permalink
chore(ci): fix .deb release action
Browse files Browse the repository at this point in the history
  • Loading branch information
soedirgo committed Mar 3, 2023
1 parent 1b91d0b commit 2ae8373
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
matrix:
extension_name:
- pg_net
# dpkg doesn't like `_` in package names
package_name:
- pg-net
postgres: [12, 13, 14, 15]
box:
- { runner: ubuntu-20.04, arch: amd64 }
Expand Down Expand Up @@ -88,7 +91,7 @@ jobs:
mkdir -p ${package_dir}/DEBIAN
touch ${package_dir}/DEBIAN/control
echo 'Package: ${{ matrix.extension_name }}' >> ${package_dir}/DEBIAN/control
echo 'Package: ${{ matrix.package_name }}' >> ${package_dir}/DEBIAN/control
echo 'Version:' ${deb_version} >> ${package_dir}/DEBIAN/control
echo 'Architecture: ${{ matrix.box.arch }}' >> ${package_dir}/DEBIAN/control
echo 'Maintainer: supabase' >> ${package_dir}/DEBIAN/control
Expand Down

0 comments on commit 2ae8373

Please sign in to comment.