Skip to content

Commit

Permalink
test cicd pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
singsangssong committed Jan 7, 2025
1 parent da69aa4 commit f16fae7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

# 환경설정
env:
DOCKER_IMAGE: ghcr.io/${{ github.repository_owner.toLowerCase() }}/luty-server-deploy
DOCKER_IMAGE: ghcr.io/${{ github.repository_owner }}/luty-server-deploy
VERSION: ${{ github.sha }}
NAME: luty-server

Expand Down Expand Up @@ -44,6 +44,12 @@ jobs:
id: buildx
uses: docker/setup-buildx-action@v1

- name: Set Docker Image Name
run: echo "DOCKER_IMAGE=ghcr.io/$(echo '${{ github.repository_owner }}' | tr '[:upper:]' '[:lower:]')/luty-server-deploy" >> $GITHUB_ENV

- name: Verify DOCKER_IMAGE
run: echo ${{ env.DOCKER_IMAGE }}

- name: Cache docker layers
uses: actions/cache@v2
with:
Expand Down

0 comments on commit f16fae7

Please sign in to comment.