OSDN Git Service

Release workflow: fix typos in variable reference
authorEric Branlund <ebranlund@fastmail.com>
Thu, 7 Mar 2024 19:51:30 +0000 (12:51 -0700)
committerEric Branlund <ebranlund@fastmail.com>
Thu, 7 Mar 2024 19:51:30 +0000 (12:51 -0700)
.github/workflows/release.yaml

index 253cfc5..8d2841a 100644 (file)
@@ -163,8 +163,8 @@ jobs:
           ./bootstrap
           ./configure --disable-japanese --disable-net
           make distdir
-          n_name=`find . -maxdepth 1 -type d -name "${{ steps.store.config.outputs.name }}"'-*' -print | wc -l`
-          name=`find . -maxdepth 1 -type d -name "${{ steps.store.config.outputs.name }}"'-*' -print`
+          n_name=`find . -maxdepth 1 -type d -name "${{ steps.store_config.outputs.name }}"'-*' -print | wc -l`
+          name=`find . -maxdepth 1 -type d -name "${{ steps.store_config.outputs.name }}"'-*' -print`
           test x"$n_name" != x1 || exit 1
           test x"$name" == x"$out" || mv "$name" "$out"
           tar -cBf - "$out" | gzip -c - >"$out".tar.gz