diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml deleted file mode 100644 index 48c577d..0000000 --- a/.forgejo/workflows/build.yml +++ /dev/null @@ -1,41 +0,0 @@ -on: - push: - pull_request: - release: - types: - - published - - prereleased - workflow_dispatch: - -jobs: - collect: - name: Collect all images - runs-on: podman - outputs: - matrix: ${{ steps.generate-list.ouputs.matrix }} - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Generate list - id: generate-list - shell: bash - run: | - set -ex - echo matrix='$(ls | jq -Rn "[inputs]")' >> "${GITHUB_OUTPUT}" - - build: - name: Build all images - runs-on: podman - needs: collect - matrix: - image: "${{ fromJson( needs.collect.outputs.matrix ) }}" - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Build image - shell: bash - run: | - cd "${{ matrix.image }}" - podman build --rm -t "${{ matrix.image }}" . \ No newline at end of file diff --git a/fedora:39/Containerfile b/fedora:39/Containerfile deleted file mode 100644 index 18a0577..0000000 --- a/fedora:39/Containerfile +++ /dev/null @@ -1,6 +0,0 @@ -FROM fedora:39 - -RUN yum install -y \ - git \ - nodejs \ - jq \ No newline at end of file diff --git a/fedora:latest b/fedora:latest deleted file mode 120000 index d47848d..0000000 --- a/fedora:latest +++ /dev/null @@ -1 +0,0 @@ -fedora:39 \ No newline at end of file diff --git a/ubuntu:22.04/Containerfile b/ubuntu:22.04/Containerfile deleted file mode 100644 index 239a295..0000000 --- a/ubuntu:22.04/Containerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM ubuntu:22.04 - -RUN apt update && apt -y install \ - git \ - nodejs \ - bash && \ - apt clean all \ No newline at end of file diff --git a/ubuntu:latest b/ubuntu:latest deleted file mode 120000 index cc5854a..0000000 --- a/ubuntu:latest +++ /dev/null @@ -1 +0,0 @@ -ubuntu:22.04/ \ No newline at end of file