File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy package to the Dev server
2+
3+ on :
4+ push :
5+ branches : ["main"]
6+
7+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
8+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
9+ concurrency :
10+ group : " dev-server"
11+ cancel-in-progress : false
12+
13+ jobs :
14+ deploy-to-dev :
15+ name : Deploy to the Development server
16+ runs-on : ubuntu-latest
17+ steps :
18+ - uses : SuffolkLITLab/ALActions/da_package@main
19+ with :
20+ SERVER_URL : ${{ vars.DEV_SERVER_URL }}
21+ DOCASSEMBLE_DEVELOPER_API_KEY : ${{ secrets.DOCASSEMBLE_DEV_SERVER_API_KEY }}
22+ GITHUB_URL : ${{ github.server_url }}/${{ github.repository }}
23+ GITHUB_BRANCH : main
You can’t perform that action at this time.
0 commit comments