Skip to content

APS-4600 Improved Open API URL duplication detection logic #125

APS-4600 Improved Open API URL duplication detection logic

APS-4600 Improved Open API URL duplication detection logic #125

Workflow file for this run

name: Publish Plugins
on:
push:
branches:
- main
- feature/**
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: write # Required for OIDC -- https://docs.npmjs.com/trusted-publishers
contents: write
packages: write
steps:
- name: Publish Backstage plugins
id: publish_plugins
uses: bcgov/aps-devops/publish-backstage-plugins@dev
with:
token: ${{ secrets.GITHUB_TOKEN }}
dispatch_repo: 'bcgov/csit-developer-portal-poc'
dispatch_ssh_key: ${{ secrets.CSIT_DEVELOPER_PORTAL_SSH_KEY }}
- name: Show publish outputs
shell: bash
run: |
echo "Version: ${{ steps.publish_plugins.outputs.version }}"
echo "Plugin count: ${{ steps.publish_plugins.outputs.plugin_count }}"
echo 'Published packages: ${{ steps.publish_plugins.outputs.published_package_versions }}'
echo 'Target repo status: ${{ steps.publish_plugins.outputs.target_repo_status }}'