develop #206
1 changed files with 14 additions and 1 deletions
|
@ -22,5 +22,18 @@ jobs:
|
||||||
run: npm run build:de
|
run: npm run build:de
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: website
|
name: build
|
||||||
path: dist/
|
path: dist/
|
||||||
|
deploy-dev:
|
||||||
|
needs: [build]
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: alpine
|
||||||
|
if:
|
||||||
|
- github.ref == 'refs/heads/develop'
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
- name: Deploy English Version
|
||||||
|
run: echo "deploy dev en"
|
||||||
|
- name: Deploy German Version
|
||||||
|
run: echo "deploy dev de"
|
||||||
|
|
Loading…
Reference in a new issue