From 1c5b1609977089c17ba3add3c8cb30e7b4a518d7 Mon Sep 17 00:00:00 2001 From: Squirrel18 Date: Mon, 30 Dec 2024 10:49:02 -0500 Subject: [PATCH] chore: remove workflows from build action that are no longer needed. --- .github/workflows/build-push-image-main.yml | 38 -------------------- .github/workflows/build-push-image-stage.yml | 38 -------------------- 2 files changed, 76 deletions(-) delete mode 100644 .github/workflows/build-push-image-main.yml delete mode 100644 .github/workflows/build-push-image-stage.yml diff --git a/.github/workflows/build-push-image-main.yml b/.github/workflows/build-push-image-main.yml deleted file mode 100644 index 35b57ba75506..000000000000 --- a/.github/workflows/build-push-image-main.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Tutor Build Action - -on: - push: - branches: - - 'pearson-release/olive.main' - -jobs: - Build: - runs-on: ubuntu-latest - steps: - - - name: Get current time - uses: josStorer/get-current-time@v2 - id: current-time - with: - format: YYYY-MM-DD-HH-mm - - - name: Build and push Image - uses: Pearson-Advance/tutor-build-image-action@v1.0.0 - with: - python-version: ${{ vars.BUILD_PYTHON_VERSION }} - tutor-version: ${{ vars.BUILD_TUTOR_VERSION }} - path-image-to-be-built: 'env/build/openedx' - organization-name: ${{ vars.BUILD_ORGANIZATION_NAME }} - repository-name: ${{ vars.BUILD_REPOSITORY_NAME }} - image-tag: ${{ vars.BUILD_TUTOR_VERSION }}-${{ steps.current-time.outputs.formattedTime }} - docker-username: ${{ secrets.DOCKERHUB_USERNAME }} - docker-token: ${{ secrets.DOCKERHUB_TOKEN }} - use-docker-cache: ${{ vars.BUILD_USE_CACHE }} - gh-access-token: ${{ secrets.GH_PAT }} - theme-repository: ${{ vars.BUILD_THEME_REPOSITORY }} - theme-branch: ${{ vars.BUILD_THEME_BRANCH }} - tutor-pearson-plugin-url: ${{ vars.TUTOR_PEARSON_PLUGIN_URL }} - tutor-pearson-plugin-name: 'pearson-plugin-edxapp-prod' - extra-private-requirements: true - private-repositories: ${{ vars.BUILD_PRIVATE_REPOSITORIES }} - branches: ${{ vars.BUILD_BRANCHES }} diff --git a/.github/workflows/build-push-image-stage.yml b/.github/workflows/build-push-image-stage.yml deleted file mode 100644 index f30e3e5cef0d..000000000000 --- a/.github/workflows/build-push-image-stage.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Tutor Build Action Test - -on: - push: - branches: - - 'pearson-release/olive.stage' - -jobs: - Build: - runs-on: ubuntu-latest - steps: - - - name: Get current time - uses: josStorer/get-current-time@v2 - id: current-time - with: - format: YYYY-MM-DD-HH-mm - - - name: Build and push Image - uses: Pearson-Advance/tutor-build-image-action@v1.0.0 - with: - python-version: ${{ vars.BUILD_PYTHON_VERSION }} - tutor-version: ${{ vars.BUILD_TUTOR_VERSION }} - path-image-to-be-built: 'env/build/openedx' - organization-name: ${{ vars.BUILD_ORGANIZATION_NAME }} - repository-name: ${{ vars.BUILD_REPOSITORY_NAME }} - image-tag: ${{ vars.BUILD_TUTOR_VERSION }}-RC-${{ steps.current-time.outputs.formattedTime }} - docker-username: ${{ secrets.DOCKERHUB_USERNAME }} - docker-token: ${{ secrets.DOCKERHUB_TOKEN }} - use-docker-cache: ${{ vars.BUILD_USE_CACHE }} - gh-access-token: ${{ secrets.GH_PAT }} - theme-repository: ${{ vars.BUILD_THEME_REPOSITORY }} - theme-branch: ${{ vars.BUILD_THEME_BRANCH }} - tutor-pearson-plugin-url: ${{ vars.TUTOR_PEARSON_PLUGIN_URL }} - tutor-pearson-plugin-name: 'pearson-plugin-edxapp-stg' - extra-private-requirements: true - private-repositories: ${{ vars.BUILD_PRIVATE_REPOSITORIES }} - branches: ${{ vars.BUILD_BRANCHES }}