π update #2
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
name: GitHub Actions Weather Bot | |
# 触εζ‘δ»ΆοΌε¨ push ε° main εζ―ε | |
on: | |
push: | |
jobs: | |
bot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout codes' | |
uses: actions/checkout@v1 | |
- name: 'Get weather report' | |
run: bash ./github/workflows/weather.sh | |
- name: 'Send mail' | |
uses: dawidd6/action-send-mail@master | |
with: | |
serveraddress: smtp.qq.com | |
serverport: 465 | |
username: ${{ secrets.MAILUSERNAME }} | |
password: ${{ secrets.MAILPASSWORD }} | |
subject: Shenzhen Weather Report | |
body: file://result.html | |
to: [email protected] | |
from: GitHub Actions | |
content_type: text/html |