.github/workflows/build.yml #39474
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
workflow_dispatch: | |
push: | |
schedule: | |
- cron: '0 * */1 * *' | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: true | |
- name: Build | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
sudo apt-get update | |
sudo apt-get install python3-venv cssmin | |
mkdir env | |
python3 -m venv env | |
source env/bin/activate | |
python -m pip install -r requirements.txt | |
./build.sh | |
cssmin > dist/theme.css.min < dist/theme.css | |
mv dist/theme.css.min dist/theme.css | |
echo "xemu.app" > dist/CNAME | |
- uses: actions/[email protected] | |
with: | |
path: dist | |
Deploy: | |
needs: [Build] | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- id: deployment | |
uses: actions/[email protected] |