From 8bdadefec315720ac17131b091c3eeeb5d14118c Mon Sep 17 00:00:00 2001 From: LiquidLemon Date: Mon, 29 Apr 2024 22:50:39 +0200 Subject: [PATCH] fix: back to shell syntax for envs --- .github/workflows/dagger.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dagger.yml b/.github/workflows/dagger.yml index e9beefd..fa7dedb 100644 --- a/.github/workflows/dagger.yml +++ b/.github/workflows/dagger.yml @@ -14,10 +14,10 @@ jobs: module: . args: >- build-and-push - --git-ref=env:GITHUB_REF - --git-commit=env:GITHUB_SHA + --git-ref=$GITHUB_REF + --git-commit=$GITHUB_SHA --registry=ghcr.io --image-name=whohacks - --registry-user=env:GITHUB_ACTOR - --registry-token=env:GITHUB_TOKEN + --registry-user=$GITHUB_ACTOR + --registry-token=$GITHUB_TOKEN