File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 3939 - run : flyctl deploy --remote-only
4040 env :
4141 FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
42+
43+ tag_release :
44+ needs : [simple_deployment_pipeline]
45+ if : github.event_name == 'push' && github.ref == 'refs/heads/main'
46+ runs-on : ubuntu-20.04
47+ steps :
48+ - name : Bump version and push tag
49+ uses :
anothrNick/[email protected] 50+ env :
51+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
52+ DEFAULT_BUMP : patch
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const PORT = process.env.PORT || 5001
77app . use ( express . static ( "dist" ) )
88
99app . get ( '/version' , ( req , res ) => {
10- res . send ( '5 ' ) // change this string to ensure a new version deployed
10+ res . send ( 'Testing if requirements of exercise 11.15 work ' ) // change this string to ensure a new version deployed
1111} )
1212
1313app . get ( '/health' , ( req , res ) => {
You can’t perform that action at this time.
0 commit comments