Skip to content

Add documentation and license metadata #43

Add documentation and license metadata

Add documentation and license metadata #43

Workflow file for this run

name: Release
on:
push:
branches: [main]
workflow_dispatch:
jobs:
lint:
name: Lint
uses: ./.github/workflows/lint.yml
test:
name: Test
uses: ./.github/workflows/test.yml
publish-to-github-packages:
name: Publish to GitHub Packages
permissions:
contents: read
packages: write
needs:
- lint
- test
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: devcontainers/action@v1
with:
base-path-to-features: ./src
publish-features: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}