From 2cfbf4caab638b9ac444fb98c9c4a6164506a769 Mon Sep 17 00:00:00 2001 From: aboyko Date: Thu, 6 Jul 2023 13:10:47 -0400 Subject: [PATCH] Fix GHA action --- .github/actions/eclipse-distro-build/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/eclipse-distro-build/action.yml b/.github/actions/eclipse-distro-build/action.yml index 2f03b3c1b..0c7468c4f 100644 --- a/.github/actions/eclipse-distro-build/action.yml +++ b/.github/actions/eclipse-distro-build/action.yml @@ -11,17 +11,22 @@ inputs: default: 'snapshot' runs: + using: "composite" steps: - name: Enforce https instead of http + shell: bash run: ./nohttp.sh - name: Timestamp id: timestamp + shell: bash run: echo "name=date::$(date +'%Y%m%dT%H%M%S')" >> $GITHUB_OUTPUT - name: Install GPG key + shell: bash run: | echo "${{ secrets.GPG_PRIVATE_KEY }}" > gpg.asc echo "${{ secrets.GPG_PASSPHRASE }}" | gpg --batch --yes --passphrase-fd 0 --import gpg.asc - name: Build Eclipse Distro + shell: bash env: tools_s3_access_key: ${{ secrets.TOOLS_S3_ACCESS_KEY }} tools_s3_secret_key: ${{ secrets.TOOLS_S3_SECRET_KEY }}