From 1a6b6bc12724188c752f9ea47717214a4d607714 Mon Sep 17 00:00:00 2001 From: FloBoJa Date: Fri, 19 Jan 2024 10:10:22 +0100 Subject: [PATCH] Fix Retriever Action --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 1f37b670..99662a1b 100644 --- a/action.yml +++ b/action.yml @@ -86,7 +86,7 @@ runs: echo "action_version=$ACTION_VERSION" >> $GITHUB_ENV - name: Download latest Retriever - if: env.action_version == 'master' + if: env.action_version == 'main' shell: bash run: | curl -s ${{ github.api_url }}/repos/PalladioSimulator/Palladio-ReverseEngineering-Retriever/releases/latest \ @@ -97,7 +97,7 @@ runs: | xargs wget -O "${{ env.tmp_dir }}/retriever.zip" - name: Download Retriever - if: env.action_version != 'master' + if: env.action_version != 'main' shell: bash # Downloads Retriever with the same version that this action has # (not necessarily the most recent one!).