🔖 3.2.9 #18
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: Docker Build and Push | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Extract tag name | |
run: | | |
tagname=${GITHUB_REF#refs/*/} && echo "TAG_NAME=${tagname#v}" >> $GITHUB_ENV | |
- name: Build Docker image | |
run: docker build -t ${{ secrets.K8S_DOCKER_REGISTHOST }}/unibot:${{ env.TAG_NAME }} . | |
id: build | |
- name: Save Docker image to file | |
run: docker save ${{ secrets.K8S_DOCKER_REGISTHOST }}/unibot:${{ env.TAG_NAME }} -o image-file.tar | |
- name: Upload Docker image as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: container-image | |
path: image-file.tar | |
push: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Download Docker image artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: container-image | |
path: . | |
- name: Extract tag name | |
run: | | |
tagname=${GITHUB_REF#refs/*/} && echo "TAG_NAME=${tagname#v}" >> $GITHUB_ENV | |
- name: Load Docker image from file | |
run: docker load -i image-file.tar | |
- name: Set Docker configuration | |
run: | | |
SW_JSON="" | |
SW_JSON="$(sudo cat /etc/docker/daemon.json | jq '.+{ "insecure-registries":["${{ secrets.K8S_DOCKER_REGISTHOST }}"],"max-concurrent-uploads": 1,"debug":true }')" | |
echo "${SW_JSON}" | sudo bash -c 'cat -- > /etc/docker/daemon.json' | |
sudo cat /etc/docker/daemon.json | |
sudo systemctl restart docker || sudo journalctl -xeu docker.service | |
echo --- | |
docker info | |
echo --- | |
docker image ls | |
echo --- | |
sudo systemctl status docker | |
shell: bash | |
- name: Push Docker image | |
run: docker push ${{ secrets.K8S_DOCKER_REGISTHOST }}/unibot:${{ env.TAG_NAME }} |