Updated docker to ci-docker-images (migration)
All checks were successful
/ checking (push) Successful in 4m7s
/ build-site (push) Successful in 2m43s
/ publish (push) Successful in 1m26s
/ unlighthouse (push) Successful in 1m14s
/ deploy-unlighthouse-files (push) Successful in 14s
/ deploy-unlighthouse-site (push) Successful in 7s

This commit is contained in:
Firq 2023-12-28 16:27:56 +01:00
parent 353995a3e0
commit ce6c660a76
Signed by: Firq
GPG key ID: 4DE1059A4666E89F
4 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ on:
jobs:
unlighthouse:
runs-on: docker
container: forgejo.neshweb.net/firq/unlighthouse-docker:latest
container: forgejo.neshweb.net/ci-docker-images/unlighthouse-docker:latest
steps:
- name: Checkout repository
uses: https://code.forgejo.org/actions/checkout@v3

View file

@ -4,7 +4,7 @@ COPY . .
RUN npm i
RUN npm run build
FROM forgejo.neshweb.net/firq/website-serve-docker:latest AS runtime
FROM forgejo.neshweb.net/ci-docker-images/website-serve-docker:latest AS runtime
COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json

View file

@ -1,7 +1,7 @@
{
"name": "@firq/fgosite",
"type": "module",
"version": "0.1.12",
"version": "0.1.13",
"private": true,
"scripts": {
"dev": "astro dev",

View file

@ -2,7 +2,7 @@
layout: ../../layouts/blogPost.astro
title: 'Migrating to Forgejo'
pubDate: 2023-12-23
description: 'My small recollection of migrating this site + CI to Forgejo'
description: 'My short recollection of migrating this site + CI to Forgejo'
author: 'Firq'
tags: ['astro', 'docker', 'forgejo']
---
@ -58,7 +58,7 @@ COPY . .
RUN npm i
RUN npm run build
FROM forgejo.neshweb.net/firq/website-serve-docker:latest AS runtime
FROM forgejo.neshweb.net/ci-docker-images/website-serve-docker:latest AS runtime
COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json
@ -138,7 +138,7 @@ With this container, the CI step to actually run the tests became a lot easier:
jobs:
unlighthouse:
runs-on: docker
container: forgejo.neshweb.net/firq/unlighthouse-docker:latest
container: forgejo.neshweb.net/ci-docker-images/unlighthouse-docker:latest
steps:
- name: Checkout repository
uses: https://code.forgejo.org/actions/checkout@v3