diff --git a/.github/workflows/release-ci.yml b/.github/workflows/release-ci.yml index 2b39cbe..4fec8d2 100644 --- a/.github/workflows/release-ci.yml +++ b/.github/workflows/release-ci.yml @@ -26,11 +26,11 @@ jobs: - name: Determine package id: determine-package-name run: | - if [[ ${{ github.ref }} == 'refs/release/rustic_core-*' ]]; then + if [[ ${{ github.ref }} == 'refs/heads/release/rustic_core-*' ]]; then echo "package=rustic_core" >> $GITHUB_OUTPUT - elif [[ ${{ github.ref }} == 'refs/release/rustic_testing-*' ]]; then + elif [[ ${{ github.ref }} == 'refs/heads/release/rustic_testing-*' ]]; then echo "package=rustic_testing" >> $GITHUB_OUTPUT - elif [[ ${{ github.ref }} == 'refs/release/rustic-*' ]]; then + elif [[ ${{ github.ref }} == 'refs/heads/release/rustic-*' ]]; then echo "package=rustic-rs" >> $GITHUB_OUTPUT fi