From 99b5da608673433892222356df893eab304b7b79 Mon Sep 17 00:00:00 2001 From: Casey Lee Date: Mon, 9 Mar 2020 17:49:55 -0700 Subject: [PATCH] Fix 132 - support for chocolatey install (#144) * fix #132 - publish chocolatey package for act * add missing files to pass validation * remove extra choco step --- .github/actions/choco/Dockerfile | 34 +++++++++++++++++++++++++++++ .github/actions/choco/action.yml | 12 ++++++++++ .github/actions/choco/entrypoint.sh | 29 ++++++++++++++++++++++++ .github/workflows/push.yml | 5 +++++ 4 files changed, 80 insertions(+) create mode 100644 .github/actions/choco/Dockerfile create mode 100644 .github/actions/choco/action.yml create mode 100755 .github/actions/choco/entrypoint.sh diff --git a/.github/actions/choco/Dockerfile b/.github/actions/choco/Dockerfile new file mode 100644 index 00000000..678e0925 --- /dev/null +++ b/.github/actions/choco/Dockerfile @@ -0,0 +1,34 @@ + +FROM mono:3.12.1 as builder +ARG CHOCOVERSION=0.10.15 + +RUN echo "deb http://archive.debian.org/debian/ wheezy main contrib non-free" >/etc/apt/sources.list +RUN apt-get update && apt-get install -y wget tar gzip + +WORKDIR /usr/local/src +RUN wget "https://github.com/chocolatey/choco/archive/${CHOCOVERSION}.tar.gz" +RUN tar -xzf "${CHOCOVERSION}.tar.gz" +RUN mv "choco-${CHOCOVERSION}" choco + +WORKDIR /usr/local/src/choco +RUN chmod +x build.sh zip.sh +RUN ./build.sh -v + +FROM alpine:latest + +COPY --from=builder /usr/local/src/choco/build_output/chocolatey /opt/chocolatey + +RUN apk add --no-cache bash +RUN apk --update --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing add mono-dev \ + && apk --update --no-cache add -t build-dependencies ca-certificates \ + && cert-sync /etc/ssl/certs/ca-certificates.crt \ + && ln -sf /opt /opt/chocolatey/opt \ + && mkdir -p /opt/chocolatey/lib \ + && apk del build-dependencies \ + && rm -rf /var/cache/apk/* + + +COPY entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] + + diff --git a/.github/actions/choco/action.yml b/.github/actions/choco/action.yml new file mode 100644 index 00000000..33cc3c6f --- /dev/null +++ b/.github/actions/choco/action.yml @@ -0,0 +1,12 @@ +name: 'Chocolatey Packager' +description: 'Create the choco package and push it' +inputs: + version: + description: 'Version of package' + required: true + apiKey: + description: 'API Key for chocolately' + required: true +runs: + using: 'docker' + image: 'Dockerfile' diff --git a/.github/actions/choco/entrypoint.sh b/.github/actions/choco/entrypoint.sh new file mode 100755 index 00000000..7048395b --- /dev/null +++ b/.github/actions/choco/entrypoint.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +set -e + +function choco { + mono /opt/chocolatey/choco.exe "$@" --allow-unofficial --nocolor +} + +function get_version { + local version=${INPUT_VERSION:-$(git describe --tags)} + version=(${version//[!0-9.-]/}) + local version_parts=(${version//-/ }) + version=${version_parts[0]} + if [ ${#version_parts[@]} -gt 1 ]; then + version=${version_parts}.${version_parts[1]} + fi + echo "$version" +} + +## Determine the version to pack +VERSION=$(get_version) +echo "Packing version ${VERSION} of act" +rm -f act-cli.*.nupkg +mkdir -p tools +cp LICENSE tools/LICENSE.txt +cp VERIFICATION tools/VERIFICATION.txt +cp dist/act_windows_amd64/act.exe tools/ +choco pack act-cli.nuspec --version ${VERSION} +choco push act-cli.${VERSION}.nupkg --api-key ${INPUT_APIKEY} -s https://push.chocolatey.org/ --timeout 180 diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 68f64b96..c8e5a0e2 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -38,3 +38,8 @@ jobs: args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GORELEASER_GITHUB_TOKEN }} + - name: Chocolatey + uses: ./.github/actions/choco + with: + version: ${{ github.ref }} + apiKey: ${{ secrets.CHOCO_APIKEY }}