portfolio/.gitea/workflows/ci.yml

42 lines
962 B
YAML
Raw Normal View History

2023-04-02 17:41:30 +02:00
name: Build and Deploy
on: [push]
jobs:
Build:
2023-04-03 10:04:30 +02:00
runs-on: ubuntu-latest
2023-04-02 17:41:30 +02:00
steps:
- uses: actions/checkout@v3
- name: Use Nodejs
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm run build
2023-04-03 10:17:54 +02:00
2023-04-02 17:41:30 +02:00
Deploy:
2023-04-10 19:52:21 +02:00
runs-on: ubuntu-docker
2023-04-02 17:41:30 +02:00
steps:
- uses: actions/checkout@v3
2023-04-03 10:17:54 +02:00
- name: Use Nodejs
uses: actions/setup-node@v3
2023-04-03 10:13:27 +02:00
with:
2023-04-03 10:17:54 +02:00
node-version: 18
- run: npm install
- run: npm run build
2023-04-03 09:29:37 +02:00
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-buildx-action@v2
2023-04-11 10:15:59 +02:00
2023-04-02 17:41:30 +02:00
- uses: docker/login-action@v2
with:
registry: gitea.xeovalyte.dev
2023-04-02 17:43:36 +02:00
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
2023-04-11 10:25:46 +02:00
- run: |
docker buildx build --push \
--tag gitea.xeovalyte.dev/xeovalyte/portfolio:latest \
--platform linux/amd64,linux/arm/v7,linux/arm64 .
2023-04-11 10:15:59 +02:00