Skip to content

Commit

Permalink
chore: remove site API references from code
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <[email protected]>
  • Loading branch information
vitormattos committed Jun 4, 2024
1 parent a14554c commit 585464c
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 33 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/phpunit-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/phpunit-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/phpunit-pgsql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/phpunit-sqlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 0 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 585464c

Please sign in to comment.