Move to node, update all dependencies, fix unocss, add a dockerfile and
Some checks are pending
Svelte Website guild. / Building the website (push) Waiting to run

a CI builder for gitea.
This commit is contained in:
2023-12-29 20:13:37 +01:00
parent ad7efaa286
commit 30e733d375
9 changed files with 108 additions and 44 deletions

View File

@@ -0,0 +1,30 @@
name: Svelte Website guild.
run-name: ${{ github.actor }} is building the website.
on:
push:
branches:
- 'svelte-stable'
jobs:
build:
name: 'Building the website'
runs-on: ubuntu-latest
steps:
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: 'Build:checkout'
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: git.projectsegfau.lt
username: midou
password: ${{ secrets.ACCESS_TOKEN }}
- name: 'Build:dockerimage'
uses: docker/build-push-action@v3
with:
tags: git.projectsegfau.lt/midou/midou36o.github.io:latest
context: '.'
push: true
no-cache: true