Trigger pipeline build when a release tag is pushed (#4741)

This commit is contained in:
Benoit Marty
2025-05-19 22:44:23 +02:00
committed by GitHub
parent 90f89b9088
commit 056fbcb0e7

28
.github/workflows/post-release.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Post-release
on:
push:
tags:
- 'v*'
jobs:
post-release:
runs-on: ubuntu-latest
# Skip in forks
if: github.repository == 'element-hq/element-x-android'
steps:
- name: Trigger pipeline
uses: actions/github-script@v7
with:
github-token: ${{ secrets.ENTERPRISE_ACTIONS_TOKEN }}
script: |
const tag = context.ref.replace('refs/tags/', '');
const inputs = { git_tag: tag };
await github.rest.actions.createWorkflowDispatch({
owner: 'element-hq',
repo: 'element-enterprise',
workflow_id: 'pipeline-android.yml',
ref: 'main',
inputs: inputs
});