wiki/.gitea/workflows/build.yml
Ludovic Cartier e105d3a525
Some checks failed
mkdocs build / build (push) Successful in 5s
mkdocs build / notification (push) Failing after 2s
typo
2024-09-03 11:04:30 +02:00

44 lines
1.1 KiB
YAML

name: mkdocs build
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Mkdocs build
uses: ./.actions/mkdocs-build/ # Uses an action in this directory
- name: rsync files
uses: ./.actions/rsync/
# # working, but i don't need this
# - name: Create release
# uses: akkuman/gitea-release-action@v1
# with:
# files: |-
# _site/**
# token: "${{ secrets.RELEASE_TOKEN }}"
notification:
runs-on: ubuntu-latest
needs: build
steps:
- name: create payload var
run: |
PAYLOAD=$(cat << EOF
payload={
\"username\": \"gitea-bot\",
\"icon_url\": \"https://icinga.com/wp-content/uploads/2017/08/icon-core.png\",
\"text\": \"mkdocs build has just finished !\"
}
EOF
)
id: my_payload
- name: curl webhook
run: |
curl --connect-timeout 30 --max-time 60 -s -S -X POST --data-urlencode "${{ env.PAYLOAD }}" "${{ secrets.WEBHOOK_URL }}"