Skip to content

Commit 517bf91

Browse files
authored
Merge pull request #16 from xebia/ramesh2051-patch-1
Update dotnet-build.yml
2 parents b0aa78e + a3c6add commit 517bf91

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/dotnet-build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,23 @@ jobs:
3838
name: ship-services-app
3939
path: ./publish
4040
retention-days: 30
41+
42+
deployToDev:
43+
name: 🚀 Deploy to Dev
44+
runs-on: ubuntu-latest
45+
# if: github.ref == 'refs/heads/develop'
46+
environment:
47+
name: deploytodev
48+
needs: [build]
49+
50+
steps:
51+
- name: Download artifact from build job
52+
uses: actions/download-artifact@v4
53+
with:
54+
name: ship-services-app
55+
path: .
56+
57+
- name: deploy step
58+
run: |
59+
echo "deployment to Dev"
60+
ls -la

0 commit comments

Comments
 (0)