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 ff85025 commit 564b450Copy full SHA for 564b450
.github/workflows/pipeline.yml
@@ -28,4 +28,10 @@ jobs:
28
with:
29
command: npm run cypress:run
30
start: npm run start-prod
31
- wait-on: http://localhost:5001
+ wait-on: http://localhost:5001
32
+
33
+ - uses: actions/checkout@v4
34
+ - uses: superfly/flyctl-actions/setup-flyctl@master
35
+ - run: flyctl deploy --remote-only
36
+ env:
37
+ FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
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) => {
10
- res.send('2') // change this string to ensure a new version deployed
+ res.send('3') // change this string to ensure a new version deployed
11
})
12
13
app.listen(PORT, () => {
0 commit comments