aboutsummaryrefslogblamecommitdiff
path: root/.github/workflows/release.yaml
blob: 485096b5f8f7f8dc0eb199e3f3424d9d9c6af418 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                      
   
                    


             


         
                                              

                          
                                 
      

                                     


                                        
            
                                                  
name: "Release dev container features"
on:
  workflow_dispatch:
  push:
    branches:
      - main

jobs:
  deploy:
    if: ${{ github.ref == 'refs/heads/main' }}
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      
      - name: "Publish"
        uses: devcontainers/action@v1
        with:
          publish-features: "true"
          base-path-to-features: "./src"
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}