chore(ci): correctly tag Docker images

This commit is contained in:
Jagandeep Brar
2022-07-09 16:46:11 -04:00
parent c3be1c5ab7
commit a101a70d14

View File

@@ -81,7 +81,7 @@ jobs:
tags.push(process.env.BUILD_FLAVOR);
tags.push(process.env.BUILD_TITLE);
if (process.env.BUILD_FLAVOR === 'stable') tags.push('latest');
return tags.join(',');
return tags.map((tag) => `ghcr.io/jagandeepbrar/lunasea:${tag}`).join(',');
- name: Build LunaSea
uses: docker/build-push-action@v2