diff --git a/.github/workflows/deploy-image.yml b/.github/workflows/deploy-image.yml new file mode 100644 index 0000000..d5900a6 --- /dev/null +++ b/.github/workflows/deploy-image.yml @@ -0,0 +1,37 @@ +name: Deploy to GitHub Container Registry + +on: + push: + branches: + - main + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Build Docker image + id: build + run: | + COMMIT_SHA=$(echo "${GITHUB_SHA}" | cut -c1-7) + IMAGE_NAME="ghcr.io/${{ github.repository }}/sentra" + docker build --file Dockerfile --tag ${IMAGE_NAME}:latest --tag ${IMAGE_NAME}:${COMMIT_SHA} . + echo "IMAGE_NAME=${IMAGE_NAME}" >> $GITHUB_ENV + echo "COMMIT_SHA=${COMMIT_SHA}" >> $GITHUB_ENV + + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.LESIS_DEPLOY }} + + - name: Push Docker image to GitHub Container Registry + run: | + docker push ${{ env.IMAGE_NAME }}:latest + docker push ${{ env.IMAGE_NAME }}:${{ env.COMMIT_SHA }} \ No newline at end of file