portfolio/.gitea/workflows/ci.yml

32 lines
875 B
YAML
Raw Normal View History

2023-04-02 17:41:30 +02:00
name: Build and Deploy
on: [push]
jobs:
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-05-01 15:22:29 +02:00
- run: docker buildx build -t gitea.xeovalyte.dev/xeovalyte/portfolio:latest-arm --push --platform=linux/arm64 .
2023-05-01 15:20:41 +02:00
- run: docker image inspect gitea.xeovalyte.dev/xeovalyte/portfolio
2023-04-30 12:23:28 +02:00
- run: docker push gitea.xeovalyte.dev/xeovalyte/portfolio:latest-arm