chore: bump templates ref to v1.1.5 (remove init container) #8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Push Coder Template | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "coder/**" | |
| jobs: | |
| push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Coder CLI | |
| run: curl -fsSL https://coder.com/install.sh | sh | |
| - name: Push template | |
| env: | |
| CODER_URL: https://noel.codespace.sh | |
| CODER_SESSION_TOKEN: ${{ secrets.CODER_TOKEN }} | |
| run: | | |
| coder templates push example --directory coder --yes \ | |
| --variable claude_code_oauth_token="${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}" |