Adopt Actions changes from other repos

This commit is contained in:
Neshura 2024-01-01 05:51:51 +01:00
parent 10812cc1e4
commit b534bebad9
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
2 changed files with 52 additions and 3 deletions

View file

@ -1,11 +1,11 @@
name: 'Build and Release Docker Image' name: 'Build and Release Docker Image'
author: 'Neshura' author: 'Neshura'
on: on:
push: push:
tags: tags:
- '[0-9]+.[0-9]+.[0-9]+' - '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+' - '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
jobs: jobs:
test: test:
runs-on: docker runs-on: docker
@ -64,7 +64,7 @@ jobs:
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
push: true push: true
tags: forgejo.neshweb.net/neshweb-sites/main-site:${{ github.ref_name }}, forgejo.neshweb.net/neshweb-sites/main-site:latest tags: forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:${{ github.ref_name }}, forgejo.neshweb.net/neshweb-sites/${{ github.event.repository.name }}:latest
release: release:
needs: build needs: build

View file

@ -0,0 +1,49 @@
name: 'Build Docker Image on Pull Request'
author: 'Neshura'
on:
pull_request:
branches:
- main
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: |
echo "Test"
VERSION=$(cat package.json | grep "version" | sed 's/.*://' | 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'";
fi
-
name: Build website
run: yarn build