Merge pull request #2 from tibetteixeira/development #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
name: Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Docker Login | |
uses: docker/login-action@v2.0.0 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
cache: maven | |
- name: Build Application JAR | |
run: mvn clean package | |
- name: Docker Compose Build | |
run: docker build -t ${{ secrets.DOCKER_USERNAME }}/minhasfinancas | |
- name: Push to DockerHub Container Registry | |
run: | | |
docker tag ${{ secrets.DOCKER_USERNAME }}/minhasfinancas:latest ${{ secrets.DOCKER_USERNAME }}/minhasfinancas:${{ github.run_id }} | |
docker push ${{ secrets.DOCKER_USERNAME }}/minhasfinancas:${{ github.run_id }} | |
docker push ${{ secrets.DOCKER_USERNAME }}/minhasfinancas:latest |