1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00

Fix the version passed into the docker build command

Change the order of the tags to ensure the version passed into the
docker build command is the full major.minor.patch version.
This commit is contained in:
Steven Nguyen 2023-05-02 17:38:16 -07:00
parent a0297bfb8b
commit 9898005465
No known key found for this signature in database

View file

@ -37,9 +37,9 @@ jobs:
with:
images: appwrite/appwrite
tags: |
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Build and push
uses: docker/build-push-action@v4