update #109
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 for test | |
env: | |
# IMAGE_NAME 用于 程序名 | |
REGISTRY: ghcr.io/${{ github.repository }} | |
SECRETS_GITHUB_TOKEN: ${{ secrets.SECRETS_GITHUB_TOKEN }} | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
GetENV: | |
runs-on: ubuntu-latest | |
outputs: | |
IMAGE_SHA: ${{ steps.get_short_sha.outputs.SHORT_SHA}} | |
IMAGE_NAME: ${{ steps.get_image_name.outputs.IMAGE_NAME}} | |
steps: | |
- name: Get Short SHA | |
id: get_short_sha | |
run: | | |
SHORT_SHA=$(echo ${GITHUB_SHA} | cut -c1-7) | |
echo "SHORT_SHA=$SHORT_SHA" >> $GITHUB_OUTPUT | |
echo "Short SHA: $SHORT_SHA" | |
- name: Get IMAGE_NAME | |
id: get_image_name | |
run: | | |
IFS='/' read -ra REPO_PARTS <<< "$GITHUB_REPOSITORY" | |
IMAGE_NAME=${REPO_PARTS[1]} | |
echo "Current repository name: $IMAGE_NAME" | |
echo "IMAGE_NAME=$IMAGE_NAME" >> $GITHUB_OUTPUT | |
Build: | |
runs-on: ubuntu-latest | |
needs: GetENV | |
if: ${{ github.ref_type == 'branch' }} | |
env: | |
IMAGE_SHA: ${{ needs.GetSHA.outputs.IMAGE_SHA}} | |
IMAGE_NAME: ${{ needs.GetSHA.outputs.IMAGE_NAME}} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Packages | |
run: echo "${SECRETS_GITHUB_TOKEN}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin | |
- name: Build images | |
run: make build ARGS="${REGISTRY}/" IMAGE_TAG="${IMAGE_SHA}" IMAGE_NAME=${IMAGE_NAME} | |
- name: Push images to repository | |
run: make push ARGS="${REGISTRY}/" IMAGE_TAG="${IMAGE_SHA}" IMAGE_NAME=${IMAGE_NAME} | |
Deploy_test: | |
runs-on: ubuntu-latest | |
needs: [ GetENV, Build ] | |
if: ${{ github.ref_type == 'branch' }} | |
env: | |
IMAGE_SHA: ${{ needs.GetSHA.outputs.IMAGE_SHA}} | |
IMAGE_NAME: ${{ needs.GetSHA.outputs.IMAGE_NAME}} | |
steps: | |
- name: Deploy Test | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.REMOTE_HOST_TEST }} | |
username: ubuntu | |
key: ${{ secrets.SSH_PRIVATE_KEY_TEST }} | |
port: 22 | |
envs: GITHUB_ACTOR,SECRETS_GITHUB_TOKEN,IMAGE_NAME,IMAGE_SHA,REGISTRY | |
script: | | |
echo "$GITHUB_ACTOR $REGISTRY $IMAGE_SHA $IMAGE_NAME $SECRETS_GITHUB_TOKEN" > test.txt | |
echo "$SECRETS_GITHUB_TOKEN" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin | |
docker stop $IMAGE_NAME | |
docker rm $IMAGE_NAME | |
docker run -d --name $IMAGE_NAME ${REGISTRY}/${IMAGE_NAME}:${IMAGE_SHA} |