2024-03-20 15:37:48 +02:00
|
|
|
name: Build And Test
|
|
|
|
run-name: ${{ gitea.actor }} is runs ci pipeline
|
2024-03-20 15:11:37 +02:00
|
|
|
on:
|
|
|
|
push
|
|
|
|
|
|
|
|
jobs:
|
2024-03-20 15:37:48 +02:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: https://github.com/actions/checkout@v4
|
|
|
|
- name: Use Node.js
|
|
|
|
uses: https://github.com/actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: '18.17'
|
|
|
|
- run: npm ci
|
|
|
|
env:
|
|
|
|
NODE_OPTIONS: --max_old_space_size=4096
|
2024-03-20 15:31:39 +02:00
|
|
|
|
2024-03-20 15:37:48 +02:00
|
|
|
publish:
|
|
|
|
runs-on: cth-ubuntu-latest
|
|
|
|
needs: build
|
|
|
|
steps:
|
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
registry: git.jakest.us
|
|
|
|
- uses: https://github.com/actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: https://github.com/docker/setup-buildx-action@v3
|
|
|
|
with:
|
|
|
|
config-inline: |
|
|
|
|
[registry."git.jakest.us"] # IP from local gitea instance
|
|
|
|
http = true
|
|
|
|
insecure = true
|
|
|
|
- name: Build and push Docker image
|
|
|
|
uses: https://github.com/docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: test
|
|
|
|
- name: Stop the docker container
|
|
|
|
continue-on-error: true
|
|
|
|
run: sudo docker stop homepage
|