From f08ee364a8a7237a5c280eb5641803d99ed00967 Mon Sep 17 00:00:00 2001 From: Anthony Brice Date: Thu, 28 Mar 2024 08:17:21 -0700 Subject: [PATCH] ?? --- .github/workflows/publish.yaml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 9eee1b2..f1376bd 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -14,15 +14,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: List tags pointing to the current commit - run: | - tags=$(git tag --contains HEAD) - if [ -z "$tags" ]; then - echo "No tags point to the current commit." - else - echo "Tags pointing to the current commit: $tags" - echo "TAGS=$tags" >> $GITHUB_ENV - fi + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ secrets.GITHUB_USERNAME }} + password: ${{ secrets.GITHUB_SECRET }} - name: Call dagger on-push uses: dagger/dagger-for-github@v5