Skip to content

Commit 62c3afd

Browse files
committed
Stub out auto-deployment
Just enough to validate that the triggers and artifacts work as expected
1 parent dc5f83e commit 62c3afd

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Deploy Latest
3+
4+
"on":
5+
workflow_run:
6+
workflows: ["Basic builds"]
7+
branches: ["master"]
8+
types: ["completed"]
9+
10+
jobs:
11+
deploy:
12+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/download-artifact@v3
16+
with:
17+
name: Distribution
18+
# TODO: let's just validate that this is triggered as expected first
19+
- run: ls -R

0 commit comments

Comments
 (0)