Skip to content

Choose a tag to compare

@paulRbr paulRbr released this 21 Aug 08:18
590e36a

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"