develop #206

Merged
samuel-p merged 13 commits from develop into main 2023-12-06 02:22:52 +00:00
Showing only changes of commit aa69f5dd07 - Show all commits

View file

@ -22,5 +22,18 @@ jobs:
run: npm run build:de
- uses: actions/upload-artifact@v3
with:
name: website
name: build
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"