diff --git a/.github/workflows/aloha-watcher.yml b/.github/workflows/aloha-watcher.yml deleted file mode 100644 index ac918a6..0000000 --- a/.github/workflows/aloha-watcher.yml +++ /dev/null @@ -1,69 +0,0 @@ -name: Watcher - aloha - -on: - push: - branches: - - main - -jobs: - changed_files: - runs-on: ubuntu-latest - name: Get changed files - steps: - - uses: actions/checkout@v4 - - - name: GCP Auth - id: auth - uses: google-github-actions/auth@v1 - with: - credentials_json: ${{ secrets.ALOHA_GCP_CREDENTIALS }} - - - name: Setup GCP SDK - id: setup-sdk - uses: google-github-actions/setup-gcloud@v1 - - - name: Get changed files - id: changed-files - uses: tj-actions/changed-files@v44 - with: - files: testnets/** - files_ignore: testnets/initia/** - - - name: Get current time - uses: josStorer/get-current-time@v2 - id: current-time - with: - format: YYYY-MM-DDTHH-mm-ss - - - name: Copy changed files to GCS - env: - ALL_ADDED_FILES: ${{ steps.changed-files.outputs.added_files }} - ALL_MODIFIED_FILES: ${{ steps.changed-files.outputs.modified_files }} - ALL_DELETED_FILES: ${{ steps.changed-files.outputs.deleted_files }} - CURRENT_TIME: ${{ steps.current-time.outputs.formattedTime }} - - run: | - if [ -n "${ALL_ADDED_FILES}" ]; then - for add in ${ALL_ADDED_FILES}; do - echo "Copying $add to GCS..." - path=$(dirname "$add") - gsutil -m cp "$add" gs://aloha-initia-registry/v1/"$CURRENT_TIME"/added/"$path"/ - done - fi - - if [ -n "${ALL_MODIFIED_FILES}" ]; then - for mod in ${ALL_MODIFIED_FILES}; do - echo "Copying $mod to GCS..." - path=$(dirname "$mod") - gsutil -m cp "$mod" gs://aloha-initia-registry/v1/"$CURRENT_TIME"/modified/"$path"/ - done - fi - - if [ -n "${ALL_DELETED_FILES}" ]; then - touch deleted_files - for del in ${ALL_DELETED_FILES}; do - echo "Writing $del to file..." - echo "$del" >> deleted_files - done - gsutil -m cp deleted_files gs://aloha-initia-registry/v1/"$CURRENT_TIME"/deleted/ - fi \ No newline at end of file diff --git a/.github/workflows/testnet-watcher.yml b/.github/workflows/testnet-watcher.yml index 4064ca8..1e099ae 100644 --- a/.github/workflows/testnet-watcher.yml +++ b/.github/workflows/testnet-watcher.yml @@ -3,7 +3,7 @@ name: Watcher - testnet on: push: branches: - - initiation-2 + - main jobs: changed_files: