Provider details: Add Toast for successful badge code copy action #388
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
# SPDX-FileCopyrightText: 2022 XMPP Providers Team | |
# | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Website Build | |
on: | |
push: | |
branches: [ master ] | |
# Allows to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Build website every day at 4:00 UTC | |
schedule: | |
- cron: "0 4 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ARCHIVE: providers-xmpp-net-master.tar.gz | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install Python packages | |
run: pip install -r tools/requirements.txt | |
- name: Prepare provider list | |
run: python tools/prepare.py | |
- name: Set up Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: '0.110.0' | |
- name: Build website | |
run: hugo | |
- name: Create build archive | |
run: tar -czf ${{ env.ARCHIVE }} "./public" | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: providers-xmpp-net-master | |
path: ${{ env.ARCHIVE }} |