diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b0368619..1d2fa6fbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: - 'docs' env: - BUILDER_VERSION: v0.9.84 + BUILDER_VERSION: v0.9.95 BUILDER_SOURCE: releases BUILDER_HOST: https://d19elf31gohf1l.cloudfront.net PACKAGE_NAME: aws-iot-device-sdk-cpp-v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71ae1d14e..703c4d97a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,14 +33,15 @@ jobs: - name: Make new release env: - Title: ${{ github.event.inputs.release_title }} + TITLE: ${{ github.event.inputs.release_title }} + RELEASE_TYPE: ${{ github.event.inputs.release_type }} run: | # Escape special characters - Title=$(echo ${Title//[\"]\\\"}) - Title=$(echo ${Title//[\']\\\'}) - Title=$(echo ${Title//[\$]}) + TITLE=$(echo ${TITLE//[\"]\\\"}) + TITLE=$(echo ${TITLE//[\']\\\'}) + TITLE=$(echo ${TITLE//[\$]}) - ./utils/publish-release.sh "${{ github.event.inputs.release_type }}" "$Title" + ./utils/publish-release.sh "$RELEASE_TYPE" "$TITLE" - name: Generate documentation run: |