Merge pull request #8 from LerianStudio/6-front-fix-revert-eslint-to-v8 #4
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
on: | |
push: | |
branches: | |
- develop | |
permissions: | |
id-token: write | |
contents: read | |
pull-requests: write | |
actions: read | |
security-events: write | |
jobs: | |
console_pipeline: | |
runs-on: ubuntu-latest | |
name: Docker pipeline - Console | |
steps: | |
- uses: actions/checkout@v4 | |
# Autenticacao no GitHub Container Registry usando o token GHCR_TOKEN | |
- name: Set up Docker authentication | |
run: echo "${{ secrets.GHCR_TOKEN }}" | docker login ghcr.io -u YOUR_USERNAME --password-stdin | |
env: | |
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }} | |
- uses: LerianStudio/midaz-github-actions-docker-pipeline@main | |
with: | |
app-name: 'midaz-console' | |
argo-cd-sync: false | |
aws-region: 'us-east-2' | |
dockerfile-name: 'Dockerfile' | |
k8s-manifest-repo-name: 'midaz-kubernetes-manifests' | |
k8s-manifest-repo-url: 'github.com/LerianStudio/midaz-kubernetes-manifests.git' | |
role-session-name: 'GITHUB-OIDC-ECR-SESSION' | |
role-to-assume: ${{ secrets.AWS_GH_OICD_TERRAFORM_ROLE }} | |
service-github-token: ${{ secrets.SERVICE_USER_TOKEN }} | |
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} |