File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1111 BUILD_TYPE : " MERGE"
1212 OSSRH_USERNAME : ${{ secrets.OSSRH_USERNAME }}
1313 OSSRH_PASSWORD : ${{ secrets.OSSRH_TOKEN }}
14+ nats_server_path : nats-server/main
1415 steps :
1516 - run : echo -e "PUSH/MERGE to main"
1617 - name : Set up JDK 8
2021 distribution : ' adopt'
2122 - name : Check out repository code
2223 uses : actions/checkout@v2
24+ - name : Setup GO
25+ uses : actions/setup-go@v2
26+ - name : Check out repository code
27+ uses : actions/checkout@v2
28+ - name : Install Nats Server
29+ run : chmod +x install-nats-server.sh && ./install-nats-server.sh
2330 - name : Build and Test
2431 run : chmod +x gradlew && ./gradlew clean test
2532 - name : Publish
Original file line number Diff line number Diff line change @@ -15,15 +15,20 @@ jobs:
1515 SIGNING_KEY_ID : ${{ secrets.SIGNING_KEY_ID }}
1616 SIGNING_KEY : ${{ secrets.SIGNING_KEY }}
1717 SIGNING_PASSWORD : ${{ secrets.SIGNING_PASSWORD }}
18+ nats_server_path : nats-server/main
1819 steps :
1920 - run : echo -e "RELEASE"
2021 - name : Set up JDK 8
2122 uses : actions/setup-java@v2
2223 with :
2324 java-version : ' 8'
2425 distribution : ' adopt'
26+ - name : Setup GO
27+ uses : actions/setup-go@v2
2528 - name : Check out repository code
2629 uses : actions/checkout@v2
30+ - name : Install Nats Server
31+ run : chmod +x install-nats-server.sh && ./install-nats-server.sh
2732 - name : Build and Test
2833 run : chmod +x gradlew && ./gradlew clean test
2934 - name : Publish
You can’t perform that action at this time.
0 commit comments