Fix workflow.yaml
This commit is contained in:
parent
118ccb7e06
commit
48ca1cac26
1 changed files with 12 additions and 0 deletions
|
@ -44,6 +44,18 @@ jobs:
|
|||
matrix:
|
||||
versions: [7.4, 8.0, 8.1, 8.2]
|
||||
steps:
|
||||
- name: Install Docker
|
||||
run: curl -fsSL https://get.docker.com | sh
|
||||
- name: Set up QEMU
|
||||
uses: 'https://git.euph.dev/actions/docker-setup-qemu@v3'
|
||||
- name: Setup Buildx
|
||||
uses: 'https://git.euph.dev/actions/docker-setup-buildx@v3'
|
||||
- name: Login to Registry
|
||||
uses: 'https://git.euph.dev/actions/docker-login@v3'
|
||||
with:
|
||||
registry: git.euph.dev
|
||||
username: ${{ secrets.DEPLOY_USER }}
|
||||
password: ${{ secrets.DEPLOY_SECRET }}
|
||||
- name: Build and push ${{ matrix.name}}:${{ matrix.versions }}
|
||||
uses: 'https://git.euph.dev/actions/docker-build-push@v5'
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue