mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-17 21:12:16 +01:00
fix: update workflows to works with submodule
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
a678149859
commit
73a71718c6
12 changed files with 21 additions and 8 deletions
1
.github/workflows/appstore-build-publish.yml
vendored
1
.github/workflows/appstore-build-publish.yml
vendored
|
|
@ -39,6 +39,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: ${{ env.APP_NAME }}
|
||||
|
||||
- name: Get app version number
|
||||
|
|
|
|||
4
.github/workflows/behat-mariadb.yml
vendored
4
.github/workflows/behat-mariadb.yml
vendored
|
|
@ -44,7 +44,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -98,6 +98,8 @@ jobs:
|
|||
- name: Checkout app
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
3
.github/workflows/behat-mysql.yml
vendored
3
.github/workflows/behat-mysql.yml
vendored
|
|
@ -48,7 +48,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -103,6 +103,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
3
.github/workflows/behat-pgsql.yml
vendored
3
.github/workflows/behat-pgsql.yml
vendored
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -102,6 +102,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
3
.github/workflows/behat-sqlite.yml
vendored
3
.github/workflows/behat-sqlite.yml
vendored
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -93,6 +93,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
1
.github/workflows/lint-php-cs.yml
vendored
1
.github/workflows/lint-php-cs.yml
vendored
|
|
@ -28,6 +28,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
|
||||
- name: Get php version
|
||||
id: versions
|
||||
|
|
|
|||
1
.github/workflows/openapi.yml
vendored
1
.github/workflows/openapi.yml
vendored
|
|
@ -29,6 +29,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
|
||||
- name: Get php version
|
||||
id: php_versions
|
||||
|
|
|
|||
3
.github/workflows/phpunit-mariadb.yml
vendored
3
.github/workflows/phpunit-mariadb.yml
vendored
|
|
@ -54,7 +54,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -105,6 +105,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
3
.github/workflows/phpunit-mysql.yml
vendored
3
.github/workflows/phpunit-mysql.yml
vendored
|
|
@ -55,7 +55,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -103,6 +103,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
3
.github/workflows/phpunit-pgsql.yml
vendored
3
.github/workflows/phpunit-pgsql.yml
vendored
|
|
@ -54,7 +54,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -106,6 +106,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
3
.github/workflows/phpunit-sqlite.yml
vendored
3
.github/workflows/phpunit-sqlite.yml
vendored
|
|
@ -54,7 +54,7 @@ jobs:
|
|||
- 'lib/**'
|
||||
- 'templates/**'
|
||||
- 'tests/**'
|
||||
- 'vendor/**'
|
||||
- '3rdparty/**'
|
||||
- 'vendor-bin/**'
|
||||
- '.php-cs-fixer.dist.php'
|
||||
- 'composer.json'
|
||||
|
|
@ -96,6 +96,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
|
|
|
|||
1
.github/workflows/psalm.yml
vendored
1
.github/workflows/psalm.yml
vendored
|
|
@ -27,6 +27,7 @@ jobs:
|
|||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
with:
|
||||
persist-credentials: false
|
||||
submodules: true
|
||||
|
||||
- name: Get php version
|
||||
id: versions
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue