ci: add missing docker steps to build.yml workflow
This commit is contained in:
parent
e3de3943e2
commit
56ad85d039
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
|
@ -212,6 +212,19 @@ jobs:
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
EOL
|
EOL
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build Release Docker Image
|
- name: Build Release Docker Image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue