Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
with:
version-file: emqx-plugin-templates/.tool-versions
version-type: strict
- name: Ensure rebar3
run: make ensure-rebar3
- name: Install rebar3 template
run: make install-rebar-template
- name: build plugins
Expand Down
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,10 @@ install-rebar-template:
$(SCRIPTS)/install-rebar-template.sh

.PHONY: build-test-plugins
build-test-plugins:
build-test-plugins: $(REBAR)
$(SCRIPTS)/build-sample-plugin.sh --tag 1.0.0 --name my_emqx_plugin_avsc --with-avsc --output-dir $(TEST_ASSETS_DIR)
$(SCRIPTS)/build-sample-plugin.sh --tag 1.0.0 --name my_emqx_plugin --output-dir $(TEST_ASSETS_DIR)

.PHONY: build-plugin
build-plugin:
$(SCRIPTS)/build-sample-plugin.sh --tag $(PLUGIN_VSN) --name $(PLUGIN_NAME) --with-avsc --output-dir $(PLUGIN_DIR)

.PHONY: fmt
fmt: $(REBAR)
$(REBAR) fmt --verbose -w
Expand Down
Loading