Disable debug mode for CLI #6
Workflow file for this run
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: release-features | |
| on: | |
| push: | |
| branches: | |
| - fix-template-build | |
| - main | |
| paths: | |
| - .github/workflows/release-features.yml | |
| - features/** | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Publish features | |
| uses: devcontainers/action@v1 | |
| with: | |
| publish-features: "true" | |
| base-path-to-features: "./features" | |
| generate-docs: "true" | |
| disable-schema-validation: "true" | |
| disable-repo-tagging: "true" | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Publish features | |
| run: npx --yes @devcontainers/cli features publish ./features -n ${{ github.repository }} |