6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/.github/workflows/build-website.yml

28 lines
1.2 KiB
YAML
Raw Normal View History

name: Build website
run-name: ${{ github.actor }} has initiated the build process 🚀
on:
2023-05-04 19:30:47 +02:00
push
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-05-04 19:21:38 +02:00
- name: Start content sync (webhook)
uses: distributhor/workflow-webhook@v3
env:
2023-06-03 16:17:11 +02:00
webhook_url: https://nluug.nl/webhooks/website/pull
2023-05-04 19:21:38 +02:00
- name: Start website build (webhook)
uses: distributhor/workflow-webhook@v3
env:
2023-06-03 16:17:11 +02:00
webhook_url: https://nluug.nl/webhooks/website/build
- run: echo "🍏 This job's status is ${{ job.status }}."