From 611352a9c6d780e71894a8739be0097abe35009a Mon Sep 17 00:00:00 2001 From: oblomov <102328295+oblomov-dev@users.noreply.github.com> Date: Sat, 24 Feb 2024 15:14:33 +0100 Subject: [PATCH] Delete .github/workflows/build_web.yaml --- .github/workflows/build_web.yaml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/build_web.yaml diff --git a/.github/workflows/build_web.yaml b/.github/workflows/build_web.yaml deleted file mode 100644 index 92dd7ae3..00000000 --- a/.github/workflows/build_web.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: build_web - -on: - push: - -permissions: - contents: read - -jobs: - build_downport: - runs-on: ubuntu-latest - timeout-minutes: 10 - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 20 - - run: npm ci - - run: npm run downport - - run: npm run transpile - - name: send to downport repository - uses: peaceiris/actions-gh-pages@v3 - if: github.ref == 'refs/heads/main' && github.repository == 'abap2UI5/abap2UI5-samples' - with: - external_repository: abap2UI5/abap2UI5-web - user_name: 'github-actions[bot]' - user_email: 'github-actions[bot]@users.noreply.github.com' - publish_branch: main - publish_dir: ./output - deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY_WEB }} - destination_dir: output