attribute-spass/.forgejo/workflows/push.yml
lubiana a7f60358eb
All checks were successful
/ ls (push) Successful in 21s
test
2023-10-20 18:31:00 +02:00

33 lines
1 KiB
YAML

on: [push]
jobs:
ls:
runs-on: docker
container:
image: git.php.fail/lubiana/container/php:8.2.11-node-2
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
id: restore-cache
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: composer-cache
- 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: |
env | sort
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "username@users.noreply.github.com"
echo git log -1 --pretty=format:"%s"
if [[ -n "$(git status -s)" ]]; then
echo lol
fi