diff --git a/.github/workflows/ips-image.yaml b/.github/workflows/ips-image.yaml new file mode 100644 index 0000000..90fa3dd --- /dev/null +++ b/.github/workflows/ips-image.yaml @@ -0,0 +1,41 @@ +name: IPS app image + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ips-aidbox-app + +on: + push: + branches: + - main + workflow_dispatch: + +jobs: + build-image: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: docker/setup-buildx-action@v3 + + - name: Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push ui image + uses: docker/build-push-action@v5 + with: + push: true + context: ./ips_ig + file: ./ips_ig/Dockerfile.dev + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}