Skip to content

chore: update gha to allow manualy run and ignore single publish error #13

chore: update gha to allow manualy run and ignore single publish error

chore: update gha to allow manualy run and ignore single publish error #13

Workflow file for this run

name: Publish Plugins
on:
workflow_dispatch:
push:
branches:
- main
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
scope: '@daytona-io'
- name: Check for changes
uses: dorny/paths-filter@v3
id: changes
with:
filters: |
daytona:
- 'plugins/daytona/**'
daytona-web:
- 'plugins/daytona-web/**'
auth-backend-module-daytona-provider:
- 'plugins/auth-backend-module-daytona-provider/**'
- if: steps.changes.outputs.daytona == 'true' || steps.changes.outputs.daytona-web == 'true' || steps.changes.outputs.auth-backend-module-daytona-provider == 'true'
name: Install dependencies
run: yarn install
- if: steps.changes.outputs.daytona == 'true' || github.event_name == 'workflow_dispatch'
name: Publish @daytona-io/backstage-plugin-daytona
run: |
cd plugins/daytona
yarn publish --non-interactive --access public
continue-on-error: true
- if: steps.changes.outputs.auth-backend-module-daytona-provider == 'true' || github.event_name == 'workflow_dispatch'
name: Publish @daytona-io/backstage-plugin-auth-backend-module-daytona-provider
run: |
cd plugins/auth-backend-module-daytona-provider
yarn publish --non-interactive --access public
continue-on-error: true
- if: steps.changes.outputs.daytona-web == 'true' || github.event_name == 'workflow_dispatch'
name: Publish @daytona-io/daytona-web
run: |
cd plugins/daytona-web
yarn publish --non-interactive --access public
continue-on-error: true