We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2567c8b commit 6f21e3fCopy full SHA for 6f21e3f
.github/workflows/pipeline.yml
@@ -10,6 +10,7 @@ on:
10
11
jobs:
12
simple_deployment_pipeline:
13
+ if: ${{ github.event_name == 'push' }}
14
runs-on: ubuntu-20.04
15
16
steps:
app.js
@@ -7,7 +7,7 @@ const PORT = process.env.PORT || 5001
7
app.use(express.static("dist"))
8
9
app.get('/version', (req, res) => {
- res.send('4') // change this string to ensure a new version deployed
+ res.send('5') // change this string to ensure a new version deployed
})
app.get('/health', (req, res) => {
0 commit comments