Skip to content

add logo concept

add logo concept #84

Workflow file for this run

name: Checks
on:
push:
jobs:
lint:
if: contains(github.event.head_commit.message, '#nodeploy') == false
uses: ./.github/workflows/lint.yml
test:
if: contains(github.event.head_commit.message, '#nodeploy') == false
uses: ./.github/workflows/test.yml
secrets: inherit
stan:
if: contains(github.event.head_commit.message, '#nodeploy') == false
uses: ./.github/workflows/stan.yml
secrets: inherit
deploy:
if: github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, '#nodeploy')
runs-on: ubuntu-latest
needs: [ lint, test, stan ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
tools: composer:v2
coverage: none
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Setup composer cache
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install composer dependencies
env:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Remove Extra Git Header
run: git config --unset-all http.https://github.com.extraheader
- name: Split
if: success()
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_CONFIG_COUNT: 2
GIT_CONFIG_KEY_0: credential.https://github.com.username
GIT_CONFIG_VALUE_0: x-access-token
GIT_CONFIG_KEY_1: credential.https://github.com.helper
GIT_CONFIG_VALUE_1: '!f() { test "$1" = get && echo "password=${GH_TOKEN}"; }; f'
run: php artisan kibble:split