Bilby/.gitea/workflows/deploy.yaml
amass 87e20d9594
Some checks failed
Deploy Applications / Build (push) Failing after 5s
test env.
2024-06-30 17:20:24 +08:00

24 lines
1.0 KiB
YAML

name: Deploy Applications
run-name: ${{ github.actor }} is building Bilby...
on: [push]
jobs:
Build:
runs-on: [ubuntu-latest, ubuntu-24.04]
container:
image: frp-by1.wwvvww.cn:45288/ubuntu_dev:24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: cmake --build build --target all
- run: build/Bilby
- name: Send success notification
if: ${{ always() }}
run: |
AMASS_REPO_NAME=${{ github.repository }}
AMASS_BUILD_STATUS=${{ job.status }}
AMASS_COMMIT=${{ github.sha }}
AMASS_COMMIT_MESSAGE=${{ github.event.head_commit.message }}
AMASS_REPO_LINK=https://gitea.amass.fun/${{ github.repository }}
echo build ${{ github.repository }} finished.
cat resources/notify.tpl | envsubst | jq -sR .
cat resources/notify.tpl | envsubst | jq -sR . | xargs -0 -I {} curl -H "Content-Type: application/json" -X POST -d '{"type":"text","msg":{} }' https://amass.fun/notify