Skip to content

Commit

Permalink
ci: add trigger build on astroport dapp github action
Browse files Browse the repository at this point in the history
  • Loading branch information
afsardo committed Dec 1, 2023
1 parent 59c8633 commit adb8379
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/trigger-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Trigger Astroport Dapp Build

on:
push:
branches:
- main

jobs:
trigger-build:
runs-on: ubuntu-latest

steps:
- name: Trigger Main Build
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.MAIN_BUILD_URL }}
method: GET

- name: Trigger Neutron Build
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.NEUTRON_BUILD_URL }}
method: GET

- name: Trigger Terra Build
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.TERRA_BUILD_URL }}
method: GET

- name: Trigger Injective Build
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.INJECTIVE_BUILD_URL }}
method: GET

- name: Trigger Sei Build
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.SEI_BUILD_URL }}
method: GET

0 comments on commit adb8379

Please sign in to comment.