Skip to content

[#2285] Split CI tasks #15

[#2285] Split CI tasks

[#2285] Split CI tasks #15

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
# For scheduled deployment with Cron Jobs.
## Examples of cron schedule expressions:
### '0 * * * *': hourly
### '0 0 * * *': daily
### '0 0 1 * *': monthly
# schedule:
# - cron: '0 0 * * *'
jobs:
Build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pip install requests
- name: Generate report
run: |
export VITE_BASE_DIR="/$(basename $GITHUB_REPOSITORY)/"
echo "VITE_BASE_DIR: $VITE_BASE_DIR"
./run.sh
Test:
needs: Build
runs-on: ubuntu-22.04
steps:
- name: Predeployment test
run: bash ./test.sh
Deploy:
needs: Test
runs-on: ubuntu-22.04
if: github.event_name == 'push'
steps:
- name: Deploy GitHub pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./reposense-report
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
commit_message: Rebuild pages at