Test artifact upload
Some checks failed
Continuous Stack Deployment Test / Deploy test stack (push) Failing after 47s

This commit is contained in:
David Boreham 2024-06-06 13:19:24 -06:00
parent 098aea1acf
commit 3b63fde79c

View File

@ -39,6 +39,17 @@ jobs:
repository: cerc-io/test-deployment-stack repository: cerc-io/test-deployment-stack
ref: 'main' ref: 'main'
path: 'test-deployment-stack' path: 'test-deployment-stack'
- name: "Create fake deployment dir"
run: |
mkdir deployments
mkdir deployments/test-deployment
echo "Some data" > deployments/test-deployment/data.txt
- name: "Test uploading an artifact"
uses: actions/upload-artifact@v4
with:
name: test-deployment-data
path: |
deployments
- name: "Show checked out files" - name: "Show checked out files"
run: ls -lR run: ls -lR
- name: "Deploy test stack" - name: "Deploy test stack"