Compare commits

..

1 commit

Author SHA1 Message Date
2afa724e11 Move build process to podman
Some checks failed
Docker Build / Build and Push Backend Image (push) Failing after 13s
Docker Build / Build and Push Frontend Image (push) Failing after 19s
Check / Frontend (pull_request) Has been cancelled
Check / Backend (pull_request) Has been cancelled
2025-11-25 22:04:32 -08:00

View file

@ -12,9 +12,7 @@ jobs:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Podman - name: Install Podman
run: | run: apt update && apt install -y podman
apt update && apt install -y podman
echo 'unqualified-search-registries=["docker.io"]' >> /etc/containers/registries.conf
- name: Login to Forgejo Container Registry - name: Login to Forgejo Container Registry
run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin
- name: Build image - name: Build image
@ -30,9 +28,7 @@ jobs:
- name: Checkout Repo - name: Checkout Repo
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install Podman - name: Install Podman
run: | run: apt update && apt install -y podman
apt update && apt install -y podman
echo 'unqualified-search-registries=["docker.io"]' >> /etc/containers/registries.conf
- name: Login to Forgejo Container Registry - name: Login to Forgejo Container Registry
run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin run: echo "${{ secrets.FORGEJO_TOKEN }}" | podman login ${{ forgejo.server_url }} -u ${{ forgejo.actor }} --password-stdin
- name: Build image - name: Build image