porter_stack_porter-ui.yml 950 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. "on":
  2. push:
  3. branches:
  4. - sms/test
  5. name: Deploy Porter to Internal Tooling
  6. jobs:
  7. # build-go:
  8. # runs-on: ubuntu-latest
  9. # steps:
  10. # - name: Checkout code
  11. # uses: actions/checkout@v3
  12. # - name: build-go
  13. # uses: ./.github/actions/build-go
  14. build-npm:
  15. runs-on: ubuntu-latest
  16. steps:
  17. - name: Checkout code
  18. uses: actions/checkout@v3
  19. - name: build-npm
  20. uses: ./.github/actions/build-npm
  21. porter-deploy:
  22. runs-on: ubuntu-latest
  23. # needs: [build-go, build-npm]
  24. needs: [build-npm]
  25. steps:
  26. - name: Checkout code
  27. uses: actions/checkout@v3
  28. - name: porter-deploy
  29. timeout-minutes: 30
  30. uses: ./.github/actions/porter-deploy
  31. with:
  32. app: porter-ui
  33. cluster: "11"
  34. host: https://dashboard.internal-tools.porter.run
  35. project: "8"
  36. token: ${{ secrets.PORTER_INTERNAL_TOOLS_DEPLOYMENT }}