Skip to content

Commit

Permalink
More debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
ntn-x2 committed Sep 4, 2024
1 parent da502ba commit 3b9571a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/trigger-gitlab-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@ jobs:
- name: Debug ref
run: echo ${{ github.ref_name }}

- name: Config Gitlab git 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 branch
run: git push gitlab ${{ github.ref_name }}
continue-on-error: true

- name: Push tag
run: git push gitlab tag ${{ github.ref_name }}

- name: Push branch and follow tags
run: git push gitlab ${{ github.ref_name }} --follow-tags

# - name: Sync HEAD with GitLab
# uses: saderi/push-to-gitlab@v1
# with:
Expand Down

0 comments on commit 3b9571a

Please sign in to comment.