diff options
-rw-r--r-- | .woodpecker.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.woodpecker.yaml b/.woodpecker.yaml index e69de29..7a4506f 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -0,0 +1,14 @@ +name: "Release dev container features" + +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"
\ No newline at end of file |