From 585464c905ef598c0ad0ec4b30d22286cac0bec2 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Tue, 4 Jun 2024 17:16:33 -0300 Subject: [PATCH] chore: remove site API references from code Signed-off-by: Vitor Mattos --- .github/workflows/phpunit-mariadb.yml | 6 ------ .github/workflows/phpunit-mysql.yml | 6 ------ .github/workflows/phpunit-pgsql.yml | 6 ------ .github/workflows/phpunit-sqlite.yml | 6 ------ Makefile | 9 --------- 5 files changed, 33 deletions(-) diff --git a/.github/workflows/phpunit-mariadb.yml b/.github/workflows/phpunit-mariadb.yml index a9165754e1..6be76039d0 100644 --- a/.github/workflows/phpunit-mariadb.yml +++ b/.github/workflows/phpunit-mariadb.yml @@ -128,12 +128,6 @@ jobs: working-directory: apps/${{ env.APP_NAME }} run: make updateocp - - name: Checkout site - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - repository: libresign/libresign.github.io - path: 'apps/${{ env.APP_NAME }}/build/site' - - name: Set up Nextcloud env: DB_PORT: 4444 diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml index cdac3aae62..da7eeda76d 100644 --- a/.github/workflows/phpunit-mysql.yml +++ b/.github/workflows/phpunit-mysql.yml @@ -130,12 +130,6 @@ jobs: working-directory: apps/${{ env.APP_NAME }} run: make updateocp - - name: Checkout site - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - repository: libresign/libresign.github.io - path: 'apps/${{ env.APP_NAME }}/build/site' - - name: Set up Nextcloud env: DB_PORT: 4444 diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml index 17b1dd80c4..5674f548e4 100644 --- a/.github/workflows/phpunit-pgsql.yml +++ b/.github/workflows/phpunit-pgsql.yml @@ -124,12 +124,6 @@ jobs: working-directory: apps/${{ env.APP_NAME }} run: make updateocp - - name: Checkout site - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - repository: libresign/libresign.github.io - path: 'apps/${{ env.APP_NAME }}/build/site' - - name: Set up Nextcloud env: DB_PORT: 4444 diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml index aef128dc7f..c171718101 100644 --- a/.github/workflows/phpunit-sqlite.yml +++ b/.github/workflows/phpunit-sqlite.yml @@ -119,12 +119,6 @@ jobs: working-directory: apps/${{ env.APP_NAME }} run: make updateocp - - name: Checkout site - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - with: - repository: libresign/libresign.github.io - path: 'apps/${{ env.APP_NAME }}/build/site' - - name: Set up Nextcloud env: DB_PORT: 4444 diff --git a/Makefile b/Makefile index 0b2cad8d7f..ef39f31655 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,6 @@ app_name=$(notdir $(CURDIR)) project_directory=$(CURDIR)/../$(app_name) build_tools_directory=$(CURDIR)/build/tools -site_build_directory=$(CURDIR)/build/site appstore_build_directory=$(CURDIR)/build/artifacts appstore_package_name=$(appstore_build_directory)/$(app_name) appstore_sign_dir=$(appstore_build_directory)/sign @@ -63,14 +62,6 @@ lint-fix: stylelint: npm run stylelint -site: - @if [ ! -d $(site_build_directory) ]; then \ - mkdir -p $(site_build_directory) ; \ - git clone https://github.com/LibreSign/libresign.github.io $(site_build_directory) ; \ - fi - $(MAKE) npm-install -C $(site_build_directory) - $(MAKE) watch-js -C $(site_build_directory) - # Cleaning .PHONY: clean clean: