feat: add pandoc and lilypond features with tests; fix CI and existin… #20
Workflow file for this run
This file contains hidden or 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 Features | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Publish Features | |
| uses: devcontainers/action@v1 | |
| with: | |
| publish-features: true | |
| oci-registry: ghcr.io | |
| features-namespace: aiscgre-br/devcontainer-features | |
| base-path-to-features: ./src | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |