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