Compare commits

..

No commits in common. "2319132092066f9112ed7fcd1ccccfc560b4f2d7" and "87ee8b7eba3457b263cbbadc1d4af8344afa1bee" have entirely different histories.

View file

@ -4,15 +4,23 @@ jobs:
build-image:
runs-on: docker
container:
image: quay.io/podman/stable
image: debian:trixie
volumes:
- /var/lib/containers
steps:
- name: Install additional packages
- name: Install packages
run: |
dnf -y install git nodejs
apt-get -y update
apt-get -y install git nodejs podman
- name: Fixup subuid/subgid
run: |
echo 'root:1:999' > /etc/subuid
echo 'root:1:999' > /etc/subgid
- name: Setup podman
run: |
sudo -u podman podman login gitea.angry.im --username PeterCxy --password ${{ secrets.FORGEJO_TOKEN }}
podman login gitea.angry.im --username PeterCxy --password ${{ secrets.FORGEJO_TOKEN }}
- name: Repository Checkout
uses: https://gitea.angry.im/actions/checkout@v3
@ -20,7 +28,7 @@ jobs:
submodules: recursive
- name: Confirm Podman works
run: sudo -u podman podman run --rm hello-world
run: podman run --rm hello-world
- name: Build & Push
run: sudo -u podman ./build-image.sh element-web
run: ./build-image.sh element-web