From d561102b9ae006e4b27784942de2b361630901d4 Mon Sep 17 00:00:00 2001
From: Loris <contact@lorismoulin.com>
Date: Fri, 19 Jan 2024 10:55:39 -0300
Subject: [PATCH] chore: fixed outputs of fileserver workflow

---
 .github/workflows/fileserver.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/fileserver.yml b/.github/workflows/fileserver.yml
index e6ae322..371f6cd 100644
--- a/.github/workflows/fileserver.yml
+++ b/.github/workflows/fileserver.yml
@@ -1,5 +1,5 @@
 name: File server build & image publish
-run-name: Deploy file server ${{ github.sha }}
+run-name: Deploy file server ${{ github.ref }}
 
 on:
   push:
@@ -48,4 +48,5 @@ jobs:
         docker build -t $IMAGE:${{ github.sha }} -f ./crates/file-server/Dockerfile .
         docker tag $IMAGE:${{ github.sha }} $IMAGE:latest
         docker push --all-tags $IMAGE
-        echo "image=$IMAGE:${ github.sha }" >> $GITHUB_OUTPUT
\ No newline at end of file
+        echo "image=$IMAGE:${{ github.sha }}" >> $GITHUB_OUTPUT
+        echo "image=$IMAGE:latest" >> $GITHUB_OUTPUT
\ No newline at end of file
-- 
GitLab