This repository has been archived on 2024-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website/.github/workflows/build-website.yml

26 lines
1 KiB
YAML
Raw Normal View History

name: Build website
run-name: ${{ github.actor }} has initiated the build process 🚀
on:
workflow_dispatch
jobs:
Start-Website-Build:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
2023-04-30 20:31:21 +02:00
- name: Install Nikola
run: |
2023-04-30 20:28:49 +02:00
pip install "Nikola[extras]"
2023-04-30 20:31:21 +02:00
- name: Run nikola build
run: |
2023-04-30 20:14:04 +02:00
nikola build
- run: echo "🍏 This job's status is ${{ job.status }}."