34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
on: [push]
|
|
jobs:
|
|
ls:
|
|
runs-on: docker
|
|
container:
|
|
image: git.php.fail/lubiana/container/php:8.2.11-node
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Get Composer Cache Directory
|
|
id: composer-cache
|
|
run: |
|
|
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-composer-
|
|
- run: composer install
|
|
- run: composer fix
|
|
- name: GIT commit and push all changed files
|
|
env:
|
|
CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts
|
|
CI_COMMIT_AUTHOR: Continuous Integration
|
|
run: |
|
|
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
|
|
git config --global user.email "username@users.noreply.github.com"
|
|
git status --porcelain
|
|
git status -s
|
|
if [[ -n $(git status --porcelain) ]]; then
|
|
echo lol
|
|
fi
|
|
|
|
|