We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd4969f commit c1919f2Copy full SHA for c1919f2
.github/workflows/publish-templates.yml
@@ -40,11 +40,14 @@ jobs:
40
password: ${{ secrets.GITHUB_TOKEN }}
41
42
- name: Publish templates
43
+ env:
44
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45
run: |
46
OWNER="${{ github.repository_owner }}"
47
OWNER_LC=$(echo "$OWNER" | tr '[:upper:]' '[:lower:]')
48
49
# Publish all templates from .devcontainer folder
50
devcontainer templates publish .devcontainer \
51
--registry "${{ env.REGISTRY }}" \
- --namespace "$OWNER_LC"
52
+ --namespace "$OWNER_LC" \
53
+ --log-level trace
0 commit comments