v2.9.5.4 #654
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: mqttop Release | |
on: | |
release: | |
jobs: | |
upload: | |
name: Upload Release files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: build | |
run: | | |
version=`./scripts/dev/get-project-version.py` | |
mvn clean install -DskipTests | |
rm -rf pulsar-protocol-* | |
cp mqtt-impl/target/pulsar-protocol-handler-mqtt-${version}.nar ./ | |
cp README.md ./pulsar-protocol-handler-mqtt-readme.md | |
echo "ls pulsar-protocol-*" | |
ls pulsar-protocol-* | |
- name: publish | |
uses: skx/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
args: 'pulsar-protocol-*' |