diff --git a/.github/workflows/trigger-build.yml b/.github/workflows/trigger-build.yml new file mode 100644 index 00000000..95b3fe8c --- /dev/null +++ b/.github/workflows/trigger-build.yml @@ -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 \ No newline at end of file