2025-01-08 23:35:09 +01:00
|
|
|
name: Build and send diploma thesis
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- Diplomarbeit/**
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2025-01-09 09:22:28 +01:00
|
|
|
- name: Build diploma thesis
|
2025-01-08 23:35:09 +01:00
|
|
|
run: |
|
2025-01-09 09:22:28 +01:00
|
|
|
docker run --rm -v ${{ github.workspace }}/Diplomarbeit:/workspace bytebang/htlle-da-env
|
2025-01-08 23:35:09 +01:00
|
|
|
|
|
|
|
- name: Send diploma thesis
|
|
|
|
uses: dawidd6/action-send-mail@v4
|
|
|
|
with:
|
|
|
|
server_address: ${{ secrets.SMTP_SERVER }}
|
|
|
|
server_port: ${{ secrets.SMTP_PORT }}
|
|
|
|
username: ${{ secrets.MAIL }}
|
|
|
|
password: ${{ secrets.MAIL_PASSWORD }}
|
|
|
|
subject: "Diploma thesis"
|
|
|
|
body: " "
|
|
|
|
to: ${{ secrets.TEAMS_MAIL }}
|
|
|
|
from: ${{ secrets.MAIL }}
|
2025-01-09 09:22:28 +01:00
|
|
|
attachments: Diplomarbeit/diplomarbeit.pdf
|