ci: add sandbox deploy workflow (wip)

This commit is contained in:
Nicolas Giard 2022-10-25 15:29:19 -04:00 committed by GitHub
parent 03bce5f2ff
commit fb0617f333
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -414,7 +414,7 @@ jobs:
sandbox:
name: Deploy to Sandbox
if: ${{ always() && github.event.inputs.sandbox == 'true' }}
needs: [release]
needs: [prepare, release]
runs-on: dev-server
env:
PKG_VERSION: ${{needs.prepare.outputs.pkg_version}}
@ -425,6 +425,14 @@ jobs:
with:
node-version: '16'
- name: Test
env:
DEBIAN_FRONTEND: noninteractive
run: |
echo "Docker containers:"
docker ps -a
echo "PKG_VERSION: $PKG_VERSION"
- name: Download a Release Artifact
uses: actions/download-artifact@v3.0.0
with: