diff --git a/.github/workflows/base.wireworld.yml b/.github/workflows/base.wireworld.yml new file mode 100644 index 0000000..0c3964d --- /dev/null +++ b/.github/workflows/base.wireworld.yml @@ -0,0 +1,49 @@ +name: Base Wireworld + +on: + push: + branches: ["main", "misc/wireworld"] + paths: + - "!**/README.md" + - "base/wireworld/**" + workflow_dispatch: + +env: + NAME: wireworld + REGISTRY: ghcr.io + +jobs: + base-build: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to the Container registry + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ github.repository }}/base_${{ env.NAME }} + tags: | + latest + + - name: Build and push Docker image + uses: docker/build-push-action@v6 + with: + context: base/${{ env.NAME }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + push: true