remove releasing section since not needed here

re-enable code coverage
这个提交包含在:
Luke Eversfield 2023-07-05 12:17:19 +02:00
父节点 011a72b1b3
当前提交 232e9682ed
共有 2 个文件被更改,包括 5 次插入28 次删除

查看文件

@ -124,8 +124,8 @@ jobs:
if: always()
run: make destroy
# - name: Upload code coverage
# uses: codecov/codecov-action@v3
# with:
# files: coverage/php/coverage.xml
# if: matrix.coverage == true
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
files: coverage/php/coverage.xml
if: matrix.coverage == true

查看文件

@ -127,29 +127,6 @@ dev-bash: .init
run:
$(compose-dev) -f docker-compose-dev.yml run -it wiki
# ======== Releasing ========
# VERSION = `node -e 'console.log(require("./extension.json").version)'`
# .PHONY: release
# release: ci git-push gh-login
# gh release create $(VERSION)
# .PHONY: git-push
# git-push:
# git diff --quiet || (echo 'git directory has changes'; exit 1)
# git push
# .PHONY: gh-login
# gh-login: require-GH_API_TOKEN
# gh config set prompt disabled
# @echo $(GH_API_TOKEN) | gh auth login --with-token
# .PHONY: require-GH_API_TOKEN
# require-GH_API_TOKEN:
# ifndef GH_API_TOKEN
# $(error GH_API_TOKEN is not set)
# endif
# ======== Helpers ========
.PHONY: .init
.init: