diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 584a3fd..558d513 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -44,19 +44,20 @@ jobs: sudo ./builder.sh asahi-cosmic 43 - name: Build container - id: build - uses: job79/buildah-build@65b3793a1370c1ccd74a5c0d090d70eb9637a4ef - with: - image: misthios/${{ matrix.image }} - tags: ${{ matrix.version }} - containerfiles: ./Containerfile - build-args: IMAGE=${{ matrix.image }} + run: | + buildah bud \ + --security-opt label=disable \ + --isolation=chroot \ + --cap-add=SYS_ADMIN \ + -t misthios/${{ matrix.image }}:${{ matrix.version }} \ + --build-arg IMAGE=${{ matrix.image }} \ + -f Containerfile . - name: Push uses: redhat-actions/push-to-registry@v2 with: - image: ${{ steps.build.outputs.image }} - tags: ${{ steps.build.outputs.tags }} + image: misthios/${{ matrix.image }} + tags: ${{ matrix.version }} registry: git.plabble.org username: ${{ secrets.REGISTRY_USERNAME }} password: ${{ secrets.REGISTRY_TOKEN }}