Skip to content

Commit

Permalink
CU
Browse files Browse the repository at this point in the history
  • Loading branch information
vvasuki committed May 18, 2023
1 parent 794ba0c commit 85ee3b4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
# Requirements as per https://github.com/ilius/pyglossary
- name: Build dicts
run: |
make full GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"
make full GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" OVERWRITE="${{ github.event.inputs.overwrite }}"
# git config --global user.email "[email protected]"
# git config --global user.name "Github Actions"
# git add -A -v
Expand Down
3 changes: 2 additions & 1 deletion bn-head/bn-entries/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ URL=https://github.com/indic-dict/stardict-bengali/raw/gh-pages/$(shell pwd|sed

# make all DICTS=xyz
DICTS=.*
OVERWRITE=false

.PHONY: all stardict tars

Expand All @@ -21,7 +22,7 @@ tars:
bash $(DICT_TOOLS_BIN_BASH)/make_tarballs.sh $(URL) DICTS=$(DICTS)

full:
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN)
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN) overwrite=$(OVERWRITE)
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(dir $(mkfile_path))
# Let the URL not end with /.
Expand Down
3 changes: 2 additions & 1 deletion bn-head/en-entries/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ URL=https://github.com/indic-dict/stardict-bengali/raw/gh-pages/$(shell pwd|sed

# make all DICTS=xyz
DICTS=.*
OVERWRITE=false

.PHONY: all stardict tars

Expand All @@ -21,7 +22,7 @@ tars:
bash $(DICT_TOOLS_BIN_BASH)/make_tarballs.sh $(URL) DICTS=$(DICTS)

full:
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN)
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN) overwrite=$(OVERWRITE)
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(dir $(mkfile_path))
# Let the URL not end with /.
Expand Down
3 changes: 2 additions & 1 deletion bn-head_dev-script/bn-entries/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ URL=https://github.com/indic-dict/stardict-bengali/raw/gh-pages/$(shell pwd|sed

# make all DICTS=xyz
DICTS=.*
OVERWRITE=false

.PHONY: all stardict tars

Expand All @@ -21,7 +22,7 @@ tars:
bash $(DICT_TOOLS_BIN_BASH)/make_tarballs.sh $(URL) DICTS=$(DICTS)

full:
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN)
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN) overwrite=$(OVERWRITE)
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(dir $(mkfile_path))
# Let the URL not end with /.
Expand Down
3 changes: 2 additions & 1 deletion bn-head_dev-script/en-entries/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ URL=https://github.com/indic-dict/stardict-bengali/raw/gh-pages/$(shell pwd|sed

# make all DICTS=xyz
DICTS=.*
OVERWRITE=false

.PHONY: all stardict tars

Expand All @@ -21,7 +22,7 @@ tars:
bash $(DICT_TOOLS_BIN_BASH)/make_tarballs.sh $(URL) DICTS=$(DICTS)

full:
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN)
bash $(DICT_TOOLS_BIN_BASH)/full_build.sh $(URL) DICTS=$(DICTS) GITHUB_TOKEN=$(GITHUB_TOKEN) overwrite=$(OVERWRITE)
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
current_dir := $(dir $(mkfile_path))
# Let the URL not end with /.
Expand Down

0 comments on commit 85ee3b4

Please sign in to comment.