From 5bf8883def57ec4cdbea86ad090453b8ad7ac66e Mon Sep 17 00:00:00 2001
From: Griefed <griefed@griefed.de>
Date: Sun, 16 Jan 2022 16:33:42 +0100
Subject: [PATCH] no message

---
 .github/workflows/test.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 75b80d4..4332927 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,11 +10,11 @@ jobs:
     runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v2
-      
+
       - name: Get branch name
         id: branch-name
         uses: tj-actions/branch-names@v5
-      
+
       - name: Setup Node.js environment
         uses: actions/setup-node@v2.5.1
         with:
@@ -40,7 +40,7 @@ jobs:
       - name: Login to DockerHub
         uses: docker/login-action@v1
         with:
-          username: griefed
+          username: ${{ secrets.DOCKERHUB_USERNAME }}
           password: ${{ secrets.DOCKERHUB_TOKEN }}
       - name: Login to GitHub Container Registry
         uses: docker/login-action@v1
@@ -59,8 +59,8 @@ jobs:
           tags: |
             ghcr.io/griefed/ltt-mapmaker:${{ steps.branch-name.outputs.current_branch }}
             ghcr.io/griefed/ltt-mapmaker:${{ steps.branch-name.outputs.current_branch }}-${{ github.sha }}
-            griefed/ltt-mapmaker:${{ steps.branch-name.outputs.current_branch }}
-            griefed/ltt-mapmaker:${{ steps.branch-name.outputs.current_branch }}-${{ github.sha }}
+            ${{ secrets.DOCKERHUB_USERNAME }}/ltt-mapmaker:${{ steps.branch-name.outputs.current_branch }}
+            ${{ secrets.DOCKERHUB_USERNAME }}/ltt-mapmaker:${{ steps.branch-name.outputs.current_branch }}-${{ github.sha }}
 
   electron:
     needs: test
-- 
GitLab