fix: install docker cli in forgejo workflow

This commit is contained in:
Ashwin Kumar Sivakumar 2026-06-12 21:39:04 +05:30
parent 3c437b61b3
commit ef9fed75cb

View file

@ -13,6 +13,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Docker CLI
run: |
apt-get update
apt-get install -y docker.io
- name: Log in to registry
run: |
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login registry.nxtgauge.com -u "${{ secrets.REGISTRY_USERNAME }}" --password-stdin