New 🆕
Deploying a directory containing a list of API definition files to a Hub gained two improvements:
-
You can now apply a set of overlays to all the definition files during deployment. Usage:
- name: Deploy all API documentation from docs/ directory uses: bump-sh/github-action@v1 with: hub: <BUMP_HUB_ID> token: ${{secrets.BUMP_TOKEN}} file: docs/ overlay: my-overlay-file.yml
-
You can now define a custom filename pattern (default was
{slug}-api.[format]. Usage:- name: Deploy all API documentation from docs/ directory uses: bump-sh/github-action@v1 with: hub: <BUMP_HUB_ID> token: ${{secrets.BUMP_TOKEN}} file: docs/ filename_pattern: "*-{slug}-source"