ci: add sandbox deploy workflow (wip)
This commit is contained in:
parent
03bce5f2ff
commit
fb0617f333
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue