Skip to content

Commit

Permalink
Adding registry automation
Browse files Browse the repository at this point in the history
  • Loading branch information
sordina committed Apr 15, 2024
1 parent 0adf74b commit 402623f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/registry-updates.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Update Hub DB from GH Registry

on:
push:
branches:
- lyndon/registry-automation # TODO: Remove the branch response

pull_request:
types: [closed]

jobs:
upload_to_s3:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: List changed files
id: list_files
run: |
git diff --name-only ${{ github.event.before }} ${{ github.event.after }} > changed_files.txt

0 comments on commit 402623f

Please sign in to comment.