diff --git a/.github/workflows/fly-deploy.yml b/.github/workflows/fly-deploy.yml index 514a134dd8..6bdb6aee98 100644 --- a/.github/workflows/fly-deploy.yml +++ b/.github/workflows/fly-deploy.yml @@ -11,6 +11,7 @@ on: jobs: deploy: name: Deploy app + if: ${{ github.event_name == 'push' }} runs-on: ubuntu-latest concurrency: deploy-group # optional: ensure only one action runs at a time steps: diff --git a/app.js b/app.js index 0676825434..834933bd23 100644 --- a/app.js +++ b/app.js @@ -5,7 +5,7 @@ const app = express() const PORT = process.env.PORT || 5001 app.get('/version', (req, res) => { - res.send('5') + res.send('6') }) app.get('/health', (req, res) => {