aboutsummaryrefslogblamecommitdiff
path: root/.github/workflows/release.yaml
blob: f8dfc7210a9d86a3109e5a2d2f35ade1d434f4c3 (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@v2
      
      - name: "Publish"
        uses: devcontainers/action@v1
        with:
          publish-features: "true"
          base-path-to-features: "./src"
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}