Compare commits

..

1 commit

Author SHA1 Message Date
f284c29a66 Move build process to podman
Some checks failed
Docker Build / Build and Push Frontend Image (push) Failing after 23s
Docker Build / Build and Push Backend Image (push) Failing after 7s
Check / Frontend (pull_request) Successful in 1m12s
Check / Backend (pull_request) Successful in 6m13s
2025-11-29 19:57:26 -08:00

View file

@ -18,7 +18,7 @@ jobs:
- 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
run: podman build -t git.tiramisu.one/drew/captains-log-backend backend/ run: podman build --ignore-subuid-range -t git.tiramisu.one/drew/captains-log-backend backend/
- name: Push image - name: Push image
run: podman push git.tiramisu.one/drew/captains-log-backend run: podman push git.tiramisu.one/drew/captains-log-backend
@ -36,6 +36,6 @@ jobs:
- 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
run: podman build -t git.tiramisu.one/drew/captains-log-frontend frontend/ run: podman build --ignore-subuid-range -t git.tiramisu.one/drew/captains-log-frontend frontend/
- name: Push image - name: Push image
run: podman build -t git.tiramisu.one/drew/captains-log-frontend run: podman push git.tiramisu.one/drew/captains-log-frontend