test build
This commit is contained in:
parent
7e7e54956f
commit
2ac7a86cbe
1 changed files with 1 additions and 50 deletions
51
.github/workflows/release.yaml
vendored
51
.github/workflows/release.yaml
vendored
|
|
@ -22,35 +22,6 @@ jobs:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
# skip Set up QEMU because it fail on act and container
|
# skip Set up QEMU because it fail on act and container
|
||||||
# Gen Version try to get version from tag or inut
|
# Gen Version try to get version from tag or inut
|
||||||
- name: Gen Version
|
|
||||||
id: gen_ver
|
|
||||||
run: |
|
|
||||||
if [[ $GITHUB_REF == 'refs/tags/'* ]]; then
|
|
||||||
IMAGE_VER='${GITHUB_REF/refs\/tags\//}'
|
|
||||||
else
|
|
||||||
IMAGE_VER=${{ github.event.inputs.IMAGE_VER }}
|
|
||||||
fi
|
|
||||||
echo '::set-output name=image_ver::'$IMAGE_VER
|
|
||||||
- name: Check Version
|
|
||||||
run: |
|
|
||||||
echo $GITHUB_REF
|
|
||||||
echo ${{ steps.gen_ver.outputs.image_ver }}
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v2
|
|
||||||
- name: Login in to registry
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ${{env.REGISTRY}}
|
|
||||||
username: ${{secrets.DOCKER_USER}}
|
|
||||||
password: ${{secrets.DOCKER_PASS}}
|
|
||||||
- name: Build and push docker image
|
|
||||||
uses: docker/build-push-action@v3
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
platforms: linux/amd64
|
|
||||||
push: true
|
|
||||||
tags: ${{env.REGISTRY}}/${{env.IMAGE_NAME}}:${{ steps.gen_ver.outputs.image_ver }},${{env.REGISTRY}}/${{env.IMAGE_NAME}}:latest
|
|
||||||
- name: Remote Deployment
|
- name: Remote Deployment
|
||||||
uses: appleboy/ssh-action@v0.1.8
|
uses: appleboy/ssh-action@v0.1.8
|
||||||
with:
|
with:
|
||||||
|
|
@ -60,24 +31,4 @@ jobs:
|
||||||
port: 22
|
port: 22
|
||||||
script: |
|
script: |
|
||||||
cd "${{env.COMPOSE_PATH}}"
|
cd "${{env.COMPOSE_PATH}}"
|
||||||
docker-compose pull
|
echo "tag=${GITHUB_REF#refs/*/}"> success
|
||||||
docker-compose up -d
|
|
||||||
echo "${{ steps.gen_ver.outputs.image_ver }}"> success
|
|
||||||
- uses: snow-actions/line-notify@v1.1.0
|
|
||||||
if: success()
|
|
||||||
with:
|
|
||||||
access_token: ${{ env.TOKEN_LINE }}
|
|
||||||
message: |
|
|
||||||
-Success✅✅✅
|
|
||||||
Image: ${{env.IMAGE_NAME}}
|
|
||||||
Version: ${{ github.event.inputs.IMAGE_VER }}
|
|
||||||
By: ${{secrets.DOCKER_USER}}
|
|
||||||
- uses: snow-actions/line-notify@v1.1.0
|
|
||||||
if: failure()
|
|
||||||
with:
|
|
||||||
access_token: ${{ env.TOKEN_LINE }}
|
|
||||||
message: |
|
|
||||||
-Failure❌❌❌
|
|
||||||
Image: ${{env.IMAGE_NAME}}
|
|
||||||
Version: ${{ github.event.inputs.IMAGE_VER }}
|
|
||||||
By: ${{secrets.DOCKER_USER}}
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue