Skip to content

Commit c1919f2

Browse files
committed
debug: add trace logging to template publish
1 parent bd4969f commit c1919f2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/publish-templates.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,14 @@ jobs:
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Publish templates
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4345
run: |
4446
OWNER="${{ github.repository_owner }}"
4547
OWNER_LC=$(echo "$OWNER" | tr '[:upper:]' '[:lower:]')
4648
4749
# Publish all templates from .devcontainer folder
4850
devcontainer templates publish .devcontainer \
4951
--registry "${{ env.REGISTRY }}" \
50-
--namespace "$OWNER_LC"
52+
--namespace "$OWNER_LC" \
53+
--log-level trace

0 commit comments

Comments
 (0)