From 2f83796e7a0cbc53d8e29f9f125a60676cfc26a5 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Sun, 15 Feb 2026 01:30:25 +1300 Subject: [PATCH] Create prod-full-web.yml --- .github/workflows/prod-full-web.yml | 42 +++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/prod-full-web.yml diff --git a/.github/workflows/prod-full-web.yml b/.github/workflows/prod-full-web.yml new file mode 100644 index 00000000..8b6548f7 --- /dev/null +++ b/.github/workflows/prod-full-web.yml @@ -0,0 +1,42 @@ +name: Build web + +on: + push: + branches: + - main + paths-ignore: + - "**/*.md" + - "./fastline/**" + - "./materialious/src/lib/i18n/**" + +jobs: + web-build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to DockerHub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Extract version from package.json + id: extract_version + run: | + VERSION=$(jq -r .version ./materialious/package.json) + echo "version=$VERSION" >> "$GITHUB_OUTPUT" + - name: Build and push + uses: docker/build-push-action@v6 + with: + context: ./materialious + file: FullDockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: | + wardpearce/materialious-full:latest + wardpearce/materialious-full:${{ steps.extract_version.outputs.version }}