Skip to content

not required

not required #8

name: build-docker-image

Check failure on line 1 in .github/workflows/build-docker-image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-docker-image.yml

Invalid workflow file

`inputs` is not a valid event name
on:
workflow_dispatch:
inputs:
docker-image-tag:
description: "Tag for Docker Image"
required: true
default: latest
env:
AWS_REGION : "ap-southeast-1"
jobs:
build-image:
runs-on: ubuntu-latest
steps:
- name: Build Image
uses: ./.github/actions/build-image
with:
docker-image-tag: ${{ github.event.inputs.docker-image-tag }}
aws-region: ${{ env.AWS_REGION }}