2022-05-31 09:58:42 +02:00
|
|
|
name: MonarcAppBO releases
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-06-13 16:25:15 +02:00
|
|
|
branches: [ 'master' ]
|
2022-05-31 09:58:42 +02:00
|
|
|
tags: [ 'v*.*', 'v*.*.*', 'v*.*.*-*' ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ 'master' ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [ "16.x" ]
|
|
|
|
php-version: [ "7.4" ]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: install deps
|
|
|
|
run: sudo apt-get update && sudo apt install -y gettext
|
|
|
|
|
|
|
|
# PHP
|
|
|
|
- name: Setup PHP
|
|
|
|
uses: shivammathur/setup-php@v2
|
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-version }}
|
|
|
|
tools: composer:v2.3
|
|
|
|
extensions: bcmath
|
|
|
|
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
|
|
run: composer validate
|
|
|
|
|
|
|
|
- name: Install PHP dependencies
|
2022-06-13 17:28:40 +02:00
|
|
|
run: composer install --prefer-dist --no-progress --no-suggest --no-dev
|
2022-05-31 09:58:42 +02:00
|
|
|
|
|
|
|
- name: Symlink Monarc modules
|
|
|
|
run: |
|
|
|
|
mkdir -p module/Monarc
|
|
|
|
ln -s ../../vendor/monarc/core module/Monarc/Core
|
|
|
|
ln -s ../../vendor/monarc/backoffice module/Monarc/BackOffice
|
|
|
|
|
|
|
|
# javascript
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
|
|
|
|
- name: Install ng-anr dependencies
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
working-directory: node_modules/ng_anr/
|
|
|
|
|
2022-05-31 10:07:12 +02:00
|
|
|
- name: Install ng-backoffice dependencies
|
2022-05-31 09:58:42 +02:00
|
|
|
run: |
|
|
|
|
npm install
|
2022-05-31 10:07:12 +02:00
|
|
|
working-directory: node_modules/ng_backoffice/
|
2022-05-31 09:58:42 +02:00
|
|
|
|
|
|
|
# final "cleanup"
|
|
|
|
- name: post job
|
|
|
|
run: |
|
|
|
|
bash -ex ./scripts/link_modules_resources.sh
|
|
|
|
bash -ex ./scripts/compile_translations.sh
|
|
|
|
|
|
|
|
# prepare release
|
|
|
|
- name: Get repository name
|
|
|
|
id: repository
|
2022-05-31 12:54:15 +02:00
|
|
|
run: echo "::set-output name=pathref::$(echo '${{ github.repository }}' | cut -d'/' -f2)-$(echo '${{ github.ref_name }}' | sed 's/[^[:alnum:]\.-]/_/g')"
|
2022-05-31 09:58:42 +02:00
|
|
|
|
|
|
|
- name: create artifact archive
|
|
|
|
run: |
|
|
|
|
tar --exclude .git --exclude .github -zcf '../${{ steps.repository.outputs.pathref }}.tar.gz' .
|
|
|
|
|
|
|
|
- name: release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
|
|
|
files: |
|
|
|
|
../${{ steps.repository.outputs.pathref }}.tar.gz
|
|
|
|
fail_on_unmatched_files: true
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|