Skip to content

Connector publishing automation #55

Connector publishing automation

Connector publishing automation #55

name: Update Hub DB from GH Registry
on:
push:
branches:
- lyndon/registry-automation # TODO: Remove the branch response
paths:
- registry/**
pull_request:
types: [opened, synchronize, reopened, closed]
paths:
- registry/**
jobs:
update_registry_db:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch_depth: 1
- name: Get all changed files and use a comma separator in the output
id: changed-files
uses: tj-actions/changed-files@v44
with:
json: true
files: |
registry/**
- name: Print out all the changed files
env:
ADDED_FILES: ${{ string(steps.changed-files.outputs.added_files) }}

Check failure on line 37 in .github/workflows/registry-updates.yaml

View workflow run for this annotation

GitHub Actions / Update Hub DB from GH Registry

Invalid workflow file

The workflow is not valid. .github/workflows/registry-updates.yaml (Line: 37, Col: 24): Unrecognized function: 'string'. Located at position 1 within expression: string(steps.changed-files.outputs.added_files) .github/workflows/registry-updates.yaml (Line: 38, Col: 27): Unrecognized function: 'string'. Located at position 1 within expression: string(steps.changed-files.outputs.modified_files)
MODIFIED_FILES: ${{ string(steps.changed-files.outputs.modified_files) }}
DELETED_FILES: ${{ string(steps.changed-files.outputs.deleted_files) }}
run: |
echo "{\"added_files\": $ADDED_FILES, \"modified_files\": $MODIFIED_FILES, \"deleted_files\": $DELETED_FILES}" > changed_files.json
- name: List changed files
id: list_files
run: |
cat changed_files.json
- name: Pseudocode for Next steps
id: next_steps
run: |
echo 'Detect status - added/modified/removed files'
echo 'for each removed connector, remove from registry db'
echo 'for each added connector, create a stub in the registry db'
echo 'for each modified connector:'
echo ' * Download tgz'
echo ' * Re-upload tgz'
echo ' * Extract'
echo ' * Build payload for API'
echo ' * PUT to API (gql)'
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21.x
- name: Run registry automation program
env:
CHANGED_FILES_PATH: "changed_files.json"
run: |
mv changed_files.json registry-automation/changed_files.json
cd registry-automation
go run main.go ci