Skip to content

Commit

Permalink
Create sign_executable.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
michelu89 committed Dec 12, 2023
1 parent f05a609 commit b597353
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/sign_executable.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit b597353

Please sign in to comment.