ci: fix typo in ref name

Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com>
This commit is contained in:
simonsan 2023-09-14 16:05:01 +02:00
parent 99759eb4ff
commit ae1022b4ab
No known key found for this signature in database
GPG Key ID: E11D13668EC3B71B

View File

@ -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