name: Build other containers on: push: branches: ["main"] paths: - "dotnet.Containerfile" - "php.Containerfile" - "rust.Containerfile" - "scripts/install-roslyn.sh" - ".gitea/workflows/other.yaml" jobs: other-build: runs-on: job-latest steps: - name: Clone repo uses: actions/checkout@v4 - name: Setup Docker Buildx uses: docker/setup-buildx-action@v3 - name: Login to Registry uses: docker/login-action@v3 with: registry: git.plabble.org username: ${{ secrets.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_TOKEN }} - name: Build and push PHP container uses: docker/build-push-action@v5 with: context: . file: ./php.Containerfile push: true tags: git.plabble.org/maurice/devc-php:${{ github.ref_name }} build-args: TAG=${{ github.ref_name }} outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true - name: Build and push Rust container uses: docker/build-push-action@v5 with: context: . file: ./rust.Containerfile push: true tags: git.plabble.org/maurice/devc-rust:${{ github.ref_name }} build-args: TAG=${{ github.ref_name }} outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true - name: Build and push Dotnet container uses: docker/build-push-action@v5 with: context: . file: ./dotnet.Containerfile push: true tags: git.plabble.org/maurice/devc-dotnet:${{ github.ref_name }} build-args: TAG=${{ github.ref_name }} outputs: type=image,oci-mediatypes=true,compression=zstd,compression-level=3,force-compression=true