From b110499b75115e23f84811514c0c0c50384d2e06 Mon Sep 17 00:00:00 2001 From: pdimens Date: Tue, 4 Jun 2024 13:03:46 -0400 Subject: [PATCH] fix the sed call --- .github/workflows/createrelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/createrelease.yml b/.github/workflows/createrelease.yml index d3f80ef1d..86237b392 100644 --- a/.github/workflows/createrelease.yml +++ b/.github/workflows/createrelease.yml @@ -63,7 +63,7 @@ jobs: # this removes the :latest tag and replaces with versioned container run: | for i in src/harpy/snakefiles/*.smk; do - sed -i "s/harpy\:latest/harpy\:${{ github.ref }}/g" $i + sed -i "s/harpy\:latest/harpy\:${{ github.ref_name }}/g" $i done - name: Build project # This builds the release tarball, stripped of unneccessary things