Add directory #4

Closed
kbaas wants to merge 3 commits from feature/directory into main
2 changed files with 8 additions and 0 deletions
Showing only changes of commit 24ab8f0c99 - Show all commits

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