Skip to content

Commit

Permalink
chore: fixed outputs of fileserver workflow (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
l0r1s authored Jan 19, 2024
2 parents ae4c42e + d561102 commit 31c5de4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/fileserver.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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
echo "image=$IMAGE:${{ github.sha }}" >> $GITHUB_OUTPUT
echo "image=$IMAGE:latest" >> $GITHUB_OUTPUT

0 comments on commit 31c5de4

Please sign in to comment.