Adicionando tabela Qualis do Pondoc. #31
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: Docker Compose CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
postgresPort: 5434 | |
PostgresServer: postgres | |
PostgresUser: postgres | |
PostgresPassword: ${{ secrets.PostgresPassword }} | |
PostgresDb: gerdisc | |
SingInKey: ${{ secrets.SingInKey }} | |
EmailSettings__SmtpServer: "smtp.office365.com" | |
EmailSettings__SmtpPort: 587 | |
EmailSettings__Username: ${{ secrets.EmailUsername }} | |
EmailSettings__Password: ${{ secrets.EmailPassword }} | |
EmailSettings__SenderEmail: ${{ secrets.EmailSender }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build and push Docker Compose services | |
run: | | |
pwd | |
docker-compose build | |
echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login --username radhanama --password-stdin | |
docker-compose push |