diff --git a/.github/workflows/cicd_rust_main_on_push.yml b/.github/workflows/cicd_rust_main_on_push.yml deleted file mode 100644 index fa3bbc3..0000000 --- a/.github/workflows/cicd_rust_main_on_push.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: CICD on main - -on: - push: - paths-ignore: - - "docs/**" - - "README.md" - - "LICENSE" - - ".editorconfig" - branches: - - main - -env: - SOLANA_CLI_VERSION: 1.14.6 - -jobs: - changed_files_rust: - runs-on: ubuntu-latest - outputs: - program: ${{steps.changed-files-specific.outputs.any_changed}} - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Get specific changed files - id: changed-files-specific - uses: tj-actions/changed-files@v18.6 - with: - files: | - rust-client - programs \ No newline at end of file diff --git a/.github/workflows/cicd_ts_main_on_push.yml b/.github/workflows/cicd_ts_main_on_push.yml deleted file mode 100644 index 12ac162..0000000 --- a/.github/workflows/cicd_ts_main_on_push.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: CICD on main - -on: - - pull_request - -env: - working_dir: ./ts-client - -jobs: - changed_files_ts: - runs-on: ubuntu-latest - outputs: - program: ${{steps.changed-files-specific.outputs.any_changed}} - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Get specific changed files - id: changed-files-specific - uses: tj-actions/changed-files@v18.6 - with: - files: | - ts-client