portfolio/.gitea/workflows/ci.yml

52 lines
1.1 KiB
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-28 10:48:44 +02:00
runs-on: ubuntu-latest
2023-04-02 17:41:30 +02:00
2023-04-28 10:45:56 +02:00
container:
image: catthehacker/ubuntu:act-latest
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-28 10:45:56 +02:00
2023-04-28 11:01:04 +02:00
- uses: docker/build-push-action@master
2023-04-28 10:45:56 +02:00
with:
context: .
file: ./Dockerfile
2023-04-28 11:30:57 +02:00
driver-opts: |
image=moby/buildkit:latest
network=host
2023-04-28 10:45:56 +02:00
platforms: |
linux/arm64
push: true
tags: gitea.xeovalyte.dev/xeovalyte/portfolio:latest