Skip to content

[#2285] Split CI tasks #16

[#2285] Split CI tasks

[#2285] Split CI tasks #16

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:
Test:
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
- name: Predeployment test
run: bash ./test.sh
- name: Upload Report Artifact
uses: actions/upload-artifact@v4
with:
name: reposense-report
path: ./reposense-report
Deploy:
needs: Test
runs-on: ubuntu-22.04
steps:
- name: Download Report Artifact
uses: actions/download-artifact@v4
with:
name: reposense-report
path: ./reposense-report
- 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