Add directory

This commit is contained in:
2025-07-23 16:27:49 +02:00
parent 5af82bd052
commit 24ab8f0c99
2 changed files with 8 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.idea

View File

@@ -2,6 +2,10 @@ name: Setup composer
description: Install and cache composer dependencies
author: Jamie Schouten
inputs:
directory:
description: 'directory to run composer in'
required: false
default: '.'
args:
description: 'install arguments'
required: false
@@ -21,6 +25,9 @@ runs:
- name: Checkout
uses: actions/checkout@v4
- name: Set working directory
run: cd ${{ inputs.directory }}
- name: Auth registry
run: composer config --global bearer.packistry.qlic.nl ${{ inputs.packistry-token }}