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
21 changes: 1 addition & 20 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Print build name
run: echo "$GITHUB_ACTOR is building '$GITHUB_REPOSITORY' (commit $GITHUB_SHA)"

- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
Expand Down Expand Up @@ -134,22 +134,3 @@ jobs:
JOB="[${GITHUB_RUN_ID}](${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID})"
NOTIFICATION="Build ${JOB} complete for ${GITHUB_SHA}.${NL}${NL}${CODE_BLOCK}${NL}"
gh pr comment "$PR_NUMBER" -b "$NOTIFICATION"

- name: Deploy to staging
env:
DEPLOY_API: ${{ secrets.DEPLOY_API }}
DEPLOY_APP: ${{ secrets.DEPLOY_APP }}
DEPLOY_ARGS: ${{ secrets.DEPLOY_ARGS }}
DEPLOY_SPACE_STG: ${{ secrets.DEPLOY_SPACE_STG }}
DEPLOY_AUTH_STG: ${{ secrets.DEPLOY_AUTH_STG }}
DEPLOY_MODE: ${{ secrets.DEPLOY_MODE }}
DEPLOY_SPEC: ${{ secrets.DEPLOY_SPEC }}
DEPLOY_TAGS: ${{ secrets.DEPLOY_TAGS }}
run: |
CMD="${DEPLOY_SPEC}$(date +'%s')${DEPLOY_TAGS}"
URL_STG="${DEPLOY_API}/${DEPLOY_SPACE_STG}/deployments/${DEPLOY_APP}?${DEPLOY_ARGS}"
curl -s --location --request PATCH "${URL_STG}" --insecure \
--header "${DEPLOY_MODE}" \
--header "${DEPLOY_AUTH_STG}" \
--data-raw "${CMD}" \
> /dev/null
21 changes: 1 addition & 20 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Print build name
run: echo "$GITHUB_ACTOR is building '$GITHUB_REPOSITORY' (commit $GITHUB_SHA)"

- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
Expand Down Expand Up @@ -112,22 +112,3 @@ jobs:
BUILD_QUALITY: "GA"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew githubRelease

- name: Deploy to production
env:
DEPLOY_API: ${{ secrets.DEPLOY_API }}
DEPLOY_APP: ${{ secrets.DEPLOY_APP }}
DEPLOY_ARGS: ${{ secrets.DEPLOY_ARGS }}
DEPLOY_SPACE_PROD: ${{ secrets.DEPLOY_SPACE_PROD }}
DEPLOY_AUTH_PROD: ${{ secrets.DEPLOY_AUTH_PROD }}
DEPLOY_MODE: ${{ secrets.DEPLOY_MODE }}
DEPLOY_SPEC: ${{ secrets.DEPLOY_SPEC }}
DEPLOY_TAGS: ${{ secrets.DEPLOY_TAGS }}
run: |
CMD="${DEPLOY_SPEC}$(date +'%s')${DEPLOY_TAGS}"
URL_PROD="${DEPLOY_API}/${DEPLOY_SPACE_PROD}/deployments/${DEPLOY_APP}?${DEPLOY_ARGS}"
curl -s --location --request PATCH "${URL_PROD}" --insecure \
--header "${DEPLOY_MODE}" \
--header "${DEPLOY_AUTH_PROD}" \
--data-raw "${CMD}" \
> /dev/null
1 change: 1 addition & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 14 additions & 1 deletion .run/AppifyHub H2.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,24 @@
<option name="name" value="CREATOR_OWNER_SECRET" />
<option name="value" value="12345678!!!!!!!!abcdefgh" />
</param>
<param>
<option name="enabled" value="true" />
<option name="name" value="OTEL_SDK_DISABLED" />
<option name="value" value="true" />
</param>
<param>
<option name="enabled" value="true" />
<option name="name" value="management.endpoint.env.keys-to-sanitize" />
</param>
<param>
<option name="enabled" value="true" />
<option name="name" value="management.endpoint.env.additional-keys-to-sanitize" />
</param>
</additionalParameters>
<module name="AppifyHub_Service.main" />
<option name="SPRING_BOOT_MAIN_CLASS" value="com.appifyhub.monolith.AppifyHubApplication" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component>
</component>
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
group=com.appifyhub
version=1.2.3
version=1.2.4
artifact=monolith
org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
Loading