From ae1022b4abdcdb3f261f36390a8a76d2b00098a3 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:05:01 +0200 Subject: [PATCH] ci: fix typo in ref name Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- .github/workflows/release-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-ci.yml b/.github/workflows/release-ci.yml index 127335d..b66794a 100644 --- a/.github/workflows/release-ci.yml +++ b/.github/workflows/release-ci.yml @@ -26,9 +26,9 @@ jobs: - name: Determine package id: determine-package-name run: | - if [[ ${{ github.ref }} == 'refs/releases/rustic_core-*' ]]; then + if [[ ${{ github.ref }} == 'refs/release/rustic_core-*' ]]; then echo "package=rustic_core" >> $GITHUB_OUTPUT - elif [[ ${{ github.ref }} == 'refs/releases/rustic-*' ]]; then + elif [[ ${{ github.ref }} == 'refs/release/rustic-*' ]]; then echo "package=rustic" >> $GITHUB_OUTPUT fi