Skip to content

Commit

Permalink
fix the build and deployment of the hugo site
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahmoudz committed Aug 13, 2021
1 parent 4d7a3f3 commit 5503249
Showing 1 changed file with 60 additions and 57 deletions.
117 changes: 60 additions & 57 deletions .github/workflows/main-ci.yml
Expand Up @@ -9,62 +9,10 @@ on:
- cron: '0 0 * * 0'

jobs:
build-php:
# Don't trigger on schedule event when in a fork
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'laradock/laradock')
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php_version: [ "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0" ]
service: [ php-fpm, php-worker, workspace, laravel-horizon ]
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
env:
PHP_VERSION: ${{ matrix.php_version }}
run: |
set -eux
cp .env.example .env
sed -i -- 's/=false/=true/g' .env
sed -i -- 's/CHANGE_SOURCE=true/CHANGE_SOURCE=false/g' .env
sed -i -- 's/PHPDBG=true/PHPDBG=false/g' .env
sed -i -- 's/CASSANDRA=true/CASSANDRA=false/g' .env
sed -i -- 's/GEARMAN=true/GEARMAN=false/g' .env
sed -i -- 's/AEROSPIKE=true/AEROSPIKE=false/g' .env
sed -i -- 's/PHALCON=true/PHALCON=false/g' .env
sed -i -- 's/RDKAFKA=true/RDKAFKA=false/g' .env
sed -i -- 's/MAILPARSE=true/MAILPARSE=false/g' .env
sed -i -- 's/OCI8=true/OCI8=false/g' .env
sed -i -- 's/IONCUBE=true/IONCUBE=false/g' .env
sed -i -- 's/V8JS=true/V8JS=false/g' .env
sed -i -- 's/AUDIOWAVEFORM=true/AUDIOWAVEFORM=false/g' .env
docker-compose build ${{ matrix.service }}
docker-compose up -d --no-deps -- ${{ matrix.service }}
docker-compose exec -T -- ${{ matrix.service }} php -m
docker-compose down
build-other:
# Don't trigger on schedule event when in a fork
if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'laradock/laradock')
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
service: [ 'nginx', 'redis', 'mysql', 'mariadb', 'percona', 'minio', 'mongo' ]
steps:
- uses: actions/checkout@v2
- name: Build the Docker image
run: |
cp .env.example .env
sed -i -- 's/=false/=true/g' .env
sed -i -- 's/CHANGE_SOURCE=true/CHANGE_SOURCE=false/g' .env
docker-compose build ${{ matrix.service }}
build-deploy-docs:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
defaults:
run:
working-directory: ./DOCUMENTATION
Expand All @@ -73,15 +21,70 @@ jobs:
uses: actions/checkout@v2

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2.1.0
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.20.2'
hugo-version: 'latest'
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true

- name: Build Hugo Site
run: hugo --minify

- name: Deploy Hugo Site to Guthub Pages
- name: Deploy Hugo Site to Github Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./docs

# build-php:
# # Don't trigger on schedule event when in a fork
# if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'laradock/laradock')
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# php_version: [ "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0" ]
# service: [ php-fpm, php-worker, workspace ]
# steps:
# - uses: actions/checkout@v2
# - name: Build the Docker image
# env:
# PHP_VERSION: ${{ matrix.php_version }}
# run: |
# set -eux
# cp .env.example .env
# sed -i -- 's/=false/=true/g' .env
# sed -i -- 's/CHANGE_SOURCE=true/CHANGE_SOURCE=false/g' .env
# sed -i -- 's/PHPDBG=true/PHPDBG=false/g' .env
# sed -i -- 's/CASSANDRA=true/CASSANDRA=false/g' .env
# sed -i -- 's/GEARMAN=true/GEARMAN=false/g' .env
# sed -i -- 's/AEROSPIKE=true/AEROSPIKE=false/g' .env
# sed -i -- 's/PHALCON=true/PHALCON=false/g' .env
# sed -i -- 's/RDKAFKA=true/RDKAFKA=false/g' .env
# sed -i -- 's/MAILPARSE=true/MAILPARSE=false/g' .env
# sed -i -- 's/OCI8=true/OCI8=false/g' .env
# sed -i -- 's/IONCUBE=true/IONCUBE=false/g' .env
# sed -i -- 's/V8JS=true/V8JS=false/g' .env
# sed -i -- 's/AUDIOWAVEFORM=true/AUDIOWAVEFORM=false/g' .env
# docker-compose build ${{ matrix.service }}
# docker-compose up -d --no-deps -- ${{ matrix.service }}
# docker-compose exec -T -- ${{ matrix.service }} php -m
# docker-compose down
#
# build-other:
# # Don't trigger on schedule event when in a fork
# if: github.event_name != 'schedule' || (github.event_name == 'schedule' && github.repository == 'laradock/laradock')
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# service: [ 'nginx', 'redis', 'mysql', 'mariadb', 'percona', 'minio', 'mongo' ]
# steps:
# - uses: actions/checkout@v2
# - name: Build the Docker image
# run: |
# cp .env.example .env
# sed -i -- 's/=false/=true/g' .env
# sed -i -- 's/CHANGE_SOURCE=true/CHANGE_SOURCE=false/g' .env
# docker-compose build ${{ matrix.service }}

0 comments on commit 5503249

Please sign in to comment.