21 lines
556 B
YAML
21 lines
556 B
YAML
# SPDX-FileCopyrightText: 2025 Ncam Gnrvngu <info@ncamgnrvngu.eu>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container:
|
|
image: node:24
|
|
steps:
|
|
- run: 'apt update'
|
|
- run: 'apt install -y buildah git-lfs'
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
lfs: true
|
|
- run: 'buildah build -t website'
|
|
- run: 'buildah push website --creds ncamgnrvngu:${{ secrets.DOCKER_TOKEN }} docker://git.ncamgnrvngu.eu/ncamgnrvngu/website:latest'
|