ADDED: signatures for O and X #1
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: buildAndSendJSignatures | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'data/X.json' | |
- 'templates/template.html' | |
env: | |
X_NAME: ${{ secrets._NAME }} | |
X_PHONE: ${{ secrets.X_PHONE }} | |
X_IPHONE: ${{ secrets.X_IPHONE }} | |
X_EMAIL: ${{ secrets.X_EMAIL }} | |
GH_ACTIONS_ENV: true | |
jobs: | |
build_and_send_signatures: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout code | |
uses: actions/checkout@v3 | |
- | |
name: Substitute marks (implicit parameters in env) | |
run: | | |
chmod u+x src/substituteMarks.sh | |
./src/substituteMarks.sh | |
- | |
name: Set up nodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- | |
name: Render signatures | |
run: | | |
npm install | |
node ./src/renderSignatures.js | |
- | |
name: Send emails | |
uses: dawidd6/action-send-mail@v3 | |
with: | |
server_address: smtp.gmail.com | |
server_port: 465 | |
secure: true | |
username: ${{secrets.EMAIL_USERNAME}} | |
password: ${{secrets.EMAIL_PASSWORD}} | |
subject: Actualització de firmes electròniques | |
to: ${{secrets.X_EMAIL}}, ${{secrets.EMAIL_USERNAME}} | |
from: ${{secrets.EMAIL_USERNAME}} | |
body: Aquest missatge ha estat auto-generat. | |
ignore_cert: true | |
attachments: ./out/*.html | |
priority: low |