action-debian-package/main.sh
Dawid Dziurla d3ce6af944
init
2020-03-25 23:13:26 +01:00

46 lines
836 B
Bash
Executable file

#!/bin/sh
set -e
directory="${INPUT_DIRECTORY:-$PWD}"
os="${INPUT_OS:-"debian"}"
cd "$directory"
package="$(dpkg-parsechangelog -S Source)"
version="$(dpkg-parsechangelog -S Version)"
distribution="$(dpkg-parsechangelog -S Distribution | sed 's/UNRELEASED/unstable/')"
container="builder"
image="$os:$distribution"
workdir="/build/source"
docker create \
--name "$container" \
--volume "$directory":"$workdir" \
--workdir "$workdir" \
"$image" \
sleep inf
docker exec \
--tty \
"$container" \
apt-get update
docker exec \
--tty \
"$container" \
apt-get install dpkg-dev debhelper
docker exec \
--tty \
--workdir "$workdir" \
"$container" \
apt-get build-dep ./
docker exec \
--tty \
--workdir "$workdir" \
"$container" \
dpkg-buildpackage -S -us -uc