Polarcraft/.gitea/workflows/ci.yml
Xeovalyte 80f4972d29
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 53s
Build and Deploy / Deploy Discord Bot (push) Failing after 35s
added manual docker file
2023-05-12 14:41:28 +02:00

60 lines
1.7 KiB
YAML

name: Build and Deploy
on: [push]
jobs:
Deploy Web:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v3
- name: Use Nodejs
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
working-directory: ./web
- run: npm run build
working-directory: ./web
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
registry: gitea.xeovalyte.dev
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- run: docker buildx build -t gitea.xeovalyte.dev/xeovalyte/polarcraft-web:latest -f ./web/Dockerfile --load --platform=linux/amd64 .
- run: docker push gitea.xeovalyte.dev/xeovalyte/polarcraft-web:latest
Deploy Discord Bot:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v3
- name: Use Nodejs
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
working-directory: ./discord-bot
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
with:
registry: gitea.xeovalyte.dev
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- run: docker buildx build -t gitea.xeovalyte.dev/xeovalyte/polarcraft-discord:latest -f ./discord-bot/Dockerfile --load --platform=linux/amd64 .
- run: docker push gitea.xeovalyte.dev/xeovalyte/polarcraft-discord:latest