Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/docker-hub-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Default Docker
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
push: true
tags: onlyoffice/doc-builder-testing:latest
- name: Build and push develop Docker
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: dockerfiles/debian-develop/Dockerfile
push: true
tags: onlyoffice/doc-builder-testing:develop-latest
- name: Build and push next Release Docker
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: dockerfiles/debian-next-release/Dockerfile
push: true
tags: onlyoffice/doc-builder-testing:next-release
- name: Build and push current Rockylinux docker
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
file: dockerfiles/rockylinux-latest/Dockerfile
push: true
Expand Down
Loading