diff --git a/web/.github/workflows/build-container.yaml b/web/.github/workflows/build-container.yaml new file mode 100644 index 000000000..20290dd5a --- /dev/null +++ b/web/.github/workflows/build-container.yaml @@ -0,0 +1,57 @@ +name: build-docker-images + +on: + push: + branches: + - release* + paths: + - "lib/**/**" + - "src/**" + +permissions: + contents: read + packages: write + +jobs: + docker-builds: + strategy: + matrix: + app: + - auth + - console + - devdoc + - website + runs-on: ubuntu-latest + name: Deploy to Docker Image + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Install UPX + run: | + curl -L0 https://github.com/upx/upx/releases/download/v4.2.1/upx-4.2.1-amd64_linux.tar.xz > upx.tar.xz + tar -xf upx.tar.xz + sudo mv upx-4.2.1-amd64_linux/upx /usr/local/bin + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build & Push Image + if: startsWith(github.ref, 'refs/heads/release') + run: | + + branch_name=${GITHUB_REF#refs/heads/} + version_string="v${branch_name#release-}-nightly" + + docker build --build-arg APP=${{matrix.app}} . -t ghcr.io/kloudlite/platform/web/${{matrix.app}}:$version_string --push + docker build --build-arg APP=${{matrix.app}} . -t ghcr.io/kloudlite/platform/web/${{matrix.app}}:commit-${GITHUB_SHA} --push \ No newline at end of file