fix: install docker cli in forgejo workflow
This commit is contained in:
parent
3c437b61b3
commit
ef9fed75cb
1 changed files with 5 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue