From 3d5fb17e72f692983122389e79e415e4195de875 Mon Sep 17 00:00:00 2001 From: Ronnie Baez Date: Tue, 14 May 2024 15:47:52 -0400 Subject: [PATCH] fix: adds missing trailing slash --- .github/workflows/on-merge.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/on-merge.yml b/.github/workflows/on-merge.yml index 61dcfc0..120d463 100644 --- a/.github/workflows/on-merge.yml +++ b/.github/workflows/on-merge.yml @@ -49,10 +49,10 @@ jobs: id: target run: | TARGET=staging - URL=https://test.pypi.org/p/alfred-python + URL=https://test.pypi.org/p/alfred-python/ if [[ ${{ github.ref }} =~ /^refs\/heads\/main|master/gi ]]; then TARGET=production - URL=https://pypi.org/p/alfred-python + URL=https://pypi.org/p/alfred-python/ fi echo "environment=$TARGET" >> "$GITHUB_OUTPUT" echo "url=$URL" >> "$GITHUB_OUTPUT"