CI-CD #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: CI-CD | |
on: | |
workflow_dispatch: # Apenas trigger manual | |
env: | |
FLUTTER_VERSION: "3.24.3" | |
DOCKER_IMAGE: develogo/squidgame | |
jobs: | |
flutter_test: | |
name: Flutter analyze, format, and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: ${{ env.FLUTTER_VERSION }} | |
channel: "stable" | |
- run: flutter pub get -v | |
- run: flutter analyze | |
- name: Ensure Dart code is formatted correctly | |
run: dart format --set-exit-if-changed . | |
build: | |
needs: flutter_test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Extract branch name | |
shell: bash | |
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: | | |
${{ env.DOCKER_IMAGE }}:${{ env.BRANCH_NAME }} | |
${{ env.DOCKER_IMAGE }}:latest | |
platforms: linux/amd64,linux/arm64 |