diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 667a13dba..4b830d60a 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -27,11 +27,10 @@ jobs: author_name: Dataport Geo Bot author_email: dataportpolarsupport@dataport.de - run: | - for TAG in $(TAGS) - do + - ${{ each TAG in TAGS }}: + - script: | git config user.name "Dataport Geo Bot" git config user.email "dataportpolarsupport@dataport.de" git tag $(TAG) git push origin $(TAG) echo "Released and tagged $(TAG)." - done