Skip to content

Commit

Permalink
Trigger bifrost deployments (#99)
Browse files Browse the repository at this point in the history
* add test rules to deploy bifrost
  • Loading branch information
fcmsilva authored Jun 6, 2024
1 parent 54fe964 commit 63289d0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy-bifrost.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Trigger bifrost deployment

on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Trigger gitlab pipeline
env:
GITLAB_API_TOKEN: ${{ secrets.GITLAB_API_TOKEN }}
run: |
curl --request POST \
--form token=$GITLAB_API_TOKEN \
--form ref=master \
--form variables[SPACES_TRIGGER]="production" \
https://gitlab.com/api/v4/projects/33388494/ref/master/trigger/pipeline/

0 comments on commit 63289d0

Please sign in to comment.