features/.github/workflows/release.yaml
Stephan 79588ef3da
checkout action update (#404)
- updated the action checkout from v2 to 3 as required by action warning
2023-01-17 09:18:13 -08:00

21 lines
458 B
YAML

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 }}