2023-12-20 07:30:15 +00:00
|
|
|
name: 'Build and Release Docker Image'
|
|
|
|
author: 'Neshura'
|
|
|
|
|
2024-01-01 04:51:51 +00:00
|
|
|
on:
|
2024-01-01 21:53:35 +00:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
|
2023-12-20 07:30:15 +00:00
|
|
|
jobs:
|
2024-01-01 21:53:35 +00:00
|
|
|
test:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2024-01-02 01:36:13 +00:00
|
|
|
- name: Checking Out Repository Code
|
2024-01-01 21:53:35 +00:00
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
2024-01-02 01:36:13 +00:00
|
|
|
|
|
|
|
- name: Get Yarn Cache Directory
|
2024-01-01 21:53:35 +00:00
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
2024-01-02 01:36:13 +00:00
|
|
|
|
|
|
|
- name: Set Up Yarn Cache
|
2024-01-01 21:53:35 +00:00
|
|
|
uses: actions/cache@v3
|
|
|
|
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
|
|
|
|
with:
|
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
2024-01-02 01:36:13 +00:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
2024-01-01 21:53:35 +00:00
|
|
|
run: yarn install
|
2024-01-02 01:36:13 +00:00
|
|
|
|
|
|
|
- name: Add Unlighthouse
|
2024-01-02 01:41:55 +00:00
|
|
|
run: |
|
2024-01-02 01:50:21 +00:00
|
|
|
echo "apt update && apt install -y chromium"
|
|
|
|
apt update && apt install -y chromium
|
2024-01-02 01:42:57 +00:00
|
|
|
echo "yarn global add @unlighthouse/cli"
|
2024-01-02 01:41:55 +00:00
|
|
|
yarn global add @unlighthouse/cli
|
2024-01-02 01:36:13 +00:00
|
|
|
|
|
|
|
- name: Run Linter
|
2024-01-01 21:53:35 +00:00
|
|
|
run: yarn lint
|
2024-01-02 01:36:13 +00:00
|
|
|
|
|
|
|
- name: Check if Version in package.json matches Tag
|
2024-01-01 21:53:35 +00:00
|
|
|
run: |
|
|
|
|
VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" | tr -d " " )
|
|
|
|
if test $VERSION != "${{ github.ref_name }}"; then
|
|
|
|
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "Version is: '$VERSION'";
|
2024-01-02 01:36:13 +00:00
|
|
|
fi
|
|
|
|
|
2024-01-02 01:58:54 +00:00
|
|
|
- name: Run Unlighthouse Test
|
2024-01-02 01:36:13 +00:00
|
|
|
run: |
|
2024-01-02 01:58:54 +00:00
|
|
|
bash -lic "yarn dev"
|
2024-01-02 01:36:13 +00:00
|
|
|
unlighthouse-ci --build-static --desktop --outputPath reports/desktop
|
|
|
|
unlighthouse-ci --build-static --mobile --outputPath reports/mobile
|
|
|
|
|
|
|
|
- name: Uploading Lighthouse Reports
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: lighthouse
|
|
|
|
path: reports
|
|
|
|
if-no-files-found: error
|
2023-12-20 07:30:15 +00:00
|
|
|
|
2024-01-02 01:52:55 +00:00
|
|
|
build:
|
|
|
|
needs: test
|
|
|
|
if: success()
|
|
|
|
runs-on: dind
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
with:
|
|
|
|
config-inline: |
|
|
|
|
[registry."docker.io"]
|
|
|
|
mirrors = ["https://docker-cache.neshweb.net"]
|
2024-01-02 01:36:13 +00:00
|
|
|
|
2024-01-02 01:52:55 +00:00
|
|
|
- name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: forgejo.neshweb.net
|
|
|
|
username: ${{ secrets.FORGEJO_USERNAME }}
|
|
|
|
password: ${{ secrets.FORGEJO_TOKEN }}
|
2024-01-02 01:36:13 +00:00
|
|
|
|
2024-01-02 01:52:55 +00:00
|
|
|
- name: Determine Docker tags
|
|
|
|
id: tags
|
|
|
|
run: |
|
|
|
|
if echo ${{ github.ref_name }} | grep -qi '\-rc' ; then
|
|
|
|
echo latest=forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:preview >> $GITHUB_OUTPUT;
|
|
|
|
else
|
|
|
|
echo latest=forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:latest >> $GITHUB_OUTPUT;
|
|
|
|
fi
|
|
|
|
echo version=forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:${{ github.ref_name }} >> $GITHUB_OUTPUT;
|
2024-01-02 01:36:13 +00:00
|
|
|
|
2024-01-02 01:52:55 +00:00
|
|
|
- name: Push to Package Registry
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.tags.outputs.version }}, ${{ steps.tags.outputs.latest }}
|
2023-12-20 09:46:55 +00:00
|
|
|
|
2024-01-02 01:52:55 +00:00
|
|
|
release:
|
|
|
|
needs: build
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
- name: Release New Version
|
|
|
|
uses: actions/forgejo-release@v1
|
|
|
|
with:
|
|
|
|
direction: upload
|
|
|
|
url: https://forgejo.neshweb.net
|
|
|
|
release-dir: release
|
|
|
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
tag: ${{ github.ref_name }}
|