0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-04 19:52:50 +01:00

Fix uppercase in CI

This commit is contained in:
Delta1925 2023-05-20 19:57:44 +02:00
parent 9a657d2ae5
commit c41a52216a
No known key found for this signature in database
GPG key ID: 1C21ACE44193CB25

View file

@ -15,13 +15,13 @@ jobs:
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v2 uses: docker/login-action@v2
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build images - name: Build images
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
with: with:
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6,linux/386 platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6,linux/386
tags: ${{ github.repository_owner }}/simple-wkd:latest,${{ github.repository_owner }}/simple-wkd:${{ github.ref_name }} tags: ${{ vars.DOCKERHUB_USERNAME }}/simple-wkd:latest,${{ vars.DOCKERHUB_USERNAME }}/simple-wkd:${{ github.ref_name }}
push: true push: true
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max