Compare commits

..

1 commit

Author SHA1 Message Date
310ccd0383 Move build process to podman
Some checks failed
Docker Build / Build and Push Backend Image (push) Failing after 47s
Docker Build / Build and Push Frontend Image (push) Failing after 16s
Check / Frontend (pull_request) Successful in 1m13s
Check / Backend (pull_request) Successful in 6m11s
2025-11-25 22:21:35 -08:00

View file

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