Gatekeeper 템플릿 스키마에 addtionalProperties가 추가되어 전달되는 버그 수정 #681
Workflow file for this run
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: Build Image | |
on: | |
pull_request_target: | |
branches: | |
- main | |
- develop | |
- release | |
env: | |
SERVICE: tks-api | |
TAG: ${{github.sha}} | |
jobs: | |
build-image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: build image | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
push: false | |
tags: | | |
sktcloud/${{env.SERVICE}}:${{env.TAG}} |