[PowerShell]- Fallback method with find_prev_vers_frm_git_tags() impl… #323
This file contains 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 dev container features" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
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 }} |