Skip to content

Trigger GitLab Deploy Pipeline #141

Trigger GitLab Deploy Pipeline

Trigger GitLab Deploy Pipeline #141

name: Trigger GitLab Deploy Pipeline
on:
workflow_dispatch:
jobs:
trigger-gitlab:
name: Trigger GitLab CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Config Gitlab env
run: |
git config --global user.name "github-actions[bot]"
git remote add gitlab https://oauth2:${{ secrets.KILTBOT_PUSH_ACCESS_TOKEN }}@gitlab.com/kiltprotocol/kilt-node
- name: Push latest ref (branch or tag)
run: git push gitlab ${{ github.ref_name }}
# It can happen that the Gitlab mirror is updated in the meanwhile, and the ref already exists there, so we ignore the error.
continue-on-error: true
- name: Trigger GitLab CI
run: |
curl -X POST \
-F token=${{ secrets.GITLAB_TRIGGER_TOKEN }} \
-F ref=${{ github.ref_name }} \
https://gitlab.com/api/v4/projects/${{ vars.GITLAB_PROJECT_ID }}/trigger/pipeline