From 4abc545646742aaf4e79768f659f1053665bfdf9 Mon Sep 17 00:00:00 2001 From: ShockedPlot7560 Date: Wed, 5 Jun 2024 08:39:10 +0000 Subject: [PATCH] try setting up pocketmine forks --- .github/workflows/docker-image.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index f44c709..ef256fb 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -19,6 +19,13 @@ jobs: matrix: image: [ubuntu-20.04] php: [ "8.1", "8.2", "8.3" ] + repo: + - name: pmmp/PocketMine-MP + namespace: pmmp + version: 5.15.0 + - name: Plutonium-Mcpe/PocketMine-MP + namespace: plutonium + version: 5.100.1 steps: - name: Set up Docker Buildx @@ -45,7 +52,8 @@ jobs: uses: docker/build-push-action@v5.1.0 with: push: true - tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY }}/${{ env.SERVER_NAME }}/${{ env.IMAGE_NAME }}-php${{ matrix.php }}:latest + tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY }}/${{ env.SERVER_NAME }}/${{ env.IMAGE_NAME }}-php${{ matrix.php }}-${{ matrix.repo.namespace }}:latest build-args: | PHP_VERSION=${{ matrix.php }} - PMMP_TAG=5.10.0 \ No newline at end of file + PMMP_REPO=${{ matrix.repo.name }} + PMMP_TAG=${{ matrix.repo.version }} \ No newline at end of file