From b597353c40044937de6a27c6ddcc5d816d488d0d Mon Sep 17 00:00:00 2001 From: Michele Santoro Date: Tue, 12 Dec 2023 12:11:52 +0100 Subject: [PATCH] Create sign_executable.yml --- .github/workflows/sign_executable.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/sign_executable.yml diff --git a/.github/workflows/sign_executable.yml b/.github/workflows/sign_executable.yml new file mode 100644 index 00000000..7768f703 --- /dev/null +++ b/.github/workflows/sign_executable.yml @@ -0,0 +1,15 @@ +name: "Create Tagged Release" + +on: [ push ] + +jobs: + trigger-build: + runs-on: ubuntu-latest + steps: + - name: Trigger Jenkins Job, for singing executable + run: | + curl -X POST "https://ci.eclipse.org/esmf/project/Sign-Native-Image/generic-webhook-trigger/invoke?token=GITHUB_BOT_TOKEN" \ + -H "Content-Type: application/json" \ + -d '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' + env: + GITHUB_BOT_TOKEN: ${{ secrets.eclipse-esmf-bot }}