feat: add github workflow to push web-app-serve builds #9
Workflow file for this run
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: Publish web app serve | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - develop | |
| - feat/web-app-serve # TODO: Delete me | |
| permissions: | |
| packages: write | |
| jobs: | |
| publish_image: | |
| name: Publish Docker Image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Publish web-app-serve | |
| uses: toggle-corp/web-app-serve-action@v0.1.1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |