We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f71403 commit ffb7fbdCopy full SHA for ffb7fbd
1 file changed
.github/workflows/deploy.yml
@@ -0,0 +1,23 @@
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
0 commit comments