diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index c39371e..c78d7af 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -4,10 +4,16 @@ jobs: runs-on: docker steps: - run: echo All Good - - run: apt update && apt install podman -y - name: Check out repository code uses: actions/checkout@v3 - - run: pwd ; echo ""; ls; env - - run: podman build -t git.martyn.berlin/martyn/fat-ssh:latest . - - run: podman login -P ${{ secrets.PUSH_TOKEN }} -u martyn git.martyn.berlin - - run: podman push git.martyn.berlin/martyn/fat-ssh:latest + - name: Login to GitLab + uses: docker/login-action@v3 + with: + registry: git.martyn.berlin + username: martyn + password: ${{ secrets.PUSH_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v5 + with: + push: true + tags: git.martyn.berlin/martyn/fat-ssh:latest