We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d406ac1 commit 434675bCopy full SHA for 434675b
action.yml
@@ -96,7 +96,7 @@ runs:
96
fi
97
98
# Fetch all tags to ensure we have complete tag history
99
- git fetch --tags || true
+ git fetch --tags 2>/dev/null || echo "::notice::Could not fetch tags (may require git credentials)"
100
101
- name: Authenticate to DevHub
102
shell: bash
@@ -180,8 +180,8 @@ runs:
180
181
run: |
182
echo "Fetching newly created tags..."
183
- git fetch --tags
184
- echo "Tags fetched successfully"
+ git fetch --tags || echo "::warning::Could not fetch tags (may require git credentials)"
+ echo "Tags sync completed"
185
186
- name: Generate release candidate
187
if: steps.check-artifacts.outputs.has-artifacts == 'true'
0 commit comments