Skip to content

Update Terraform aws to v5.67.0 #524

Update Terraform aws to v5.67.0

Update Terraform aws to v5.67.0 #524

Workflow file for this run

name: delivery
on:
pull_request:
types:
- closed
branches:
- 'main'
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: git setting
run: |
git config --local user.email "[email protected]"
git config --local user.name "hmiyado"
- name: Build distribution app
run: ./gradlew clean installDist
- name: Set New Version
run: echo new_version="$(cat build/generated/version.txt)" >> "$GITHUB_ENV"
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
tags: miyado/kottage:latest, miyado/kottage:${{ env.new_version }}