From 49a5389ab09860966cdfc2c7137e661aeca29be1 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Mon, 19 Jan 2026 23:10:17 -0500 Subject: [PATCH] Update api-deploy-nonprod.yml --- .github/workflows/api-deploy-nonprod.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/api-deploy-nonprod.yml b/.github/workflows/api-deploy-nonprod.yml index 4270f2f..00ca1a7 100644 --- a/.github/workflows/api-deploy-nonprod.yml +++ b/.github/workflows/api-deploy-nonprod.yml @@ -56,6 +56,12 @@ jobs: echo "DOCKERHUB_TOKEN secret is set" fi echo "Current Version: ${{inputs.current_version}}" + updateVersion: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Bump version + run: npm version patch build: needs: check-inputs if: needs.check-inputs.result == 'success' && inputs.workflow_type != 'release' @@ -90,4 +96,4 @@ jobs: steps: - name: Deploy to Coolify run: | - curl -X GET '${{ secrets.COOLIFY_WEBHOOK_API }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' + curl -X GET '${{ secrets.COOLIFY_WEBHOOK_API }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' \ No newline at end of file