Merge pull request #49 from layer5io/dependabot/npm_and_yarn/ui/axios… #43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Docker Extension for Kanvas | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| branches: | |
| - "master" | |
| paths-ignore: | |
| - "docs/**" | |
| # - '.github/**' | |
| jobs: | |
| extension-build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout 🛎️ repo | |
| uses: actions/checkout@v4 | |
| - name: Build Extension UI | |
| run: | | |
| # Build UI. Produce local package. | |
| make ui-build | |
| - name: Build Extension | |
| run: | | |
| # Build service image to be deployed as a Docker extension | |
| make extension-build | |