2023-12-20 21:03:36 +00:00
|
|
|
name: 'Build and Release Docker Image'
|
|
|
|
author: 'Neshura'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checking Out Repository Code
|
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
|
|
|
-
|
|
|
|
name: Get Yarn Cache Directory
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
|
|
|
|
-
|
|
|
|
name: Set Up Yarn Cache
|
|
|
|
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-
|
|
|
|
-
|
|
|
|
name: Install Dependencies
|
|
|
|
run: yarn install
|
|
|
|
-
|
|
|
|
name: Run Linter
|
|
|
|
run: yarn lint
|
|
|
|
-
|
|
|
|
name: Check if Version in package.json matches Tag
|
|
|
|
run: |
|
2023-12-20 21:27:22 +00:00
|
|
|
VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" | tr -d " " )
|
2023-12-20 21:03:36 +00:00
|
|
|
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'";
|
|
|
|
fi
|
|
|
|
|
|
|
|
build:
|
|
|
|
needs: test
|
|
|
|
if: success()
|
|
|
|
runs-on: dind
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
-
|
|
|
|
name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v3
|
|
|
|
with:
|
|
|
|
registry: forgejo.neshweb.net
|
|
|
|
username: ${{ secrets.FORGEJO_USERNAME }}
|
|
|
|
password: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
-
|
|
|
|
name: Push to Package Registry
|
|
|
|
uses: docker/build-push-action@v5
|
|
|
|
with:
|
|
|
|
push: true
|
|
|
|
tags: forgejo.neshweb.net/neshweb-sites/readyornot:${{ github.ref_name }}, forgejo.neshweb.net/neshweb-sites/readyornot:latest
|
|
|
|
|
|
|
|
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 }}
|