Custom ShuiZe Docker #54
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: Custom ShuiZe Docker | |
on: | |
schedule: | |
- cron: "0 0 */14 * *" | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
env: | |
TEST_TAG: 1itt1eB0y/shuize:test | |
CONTAINER_NAME: shuize | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
# - | |
# name: Clone Git Repo | |
# run: | | |
# git clone https://github.com/1itt1eB0y/MyCollection.git | |
# mv MyCollection/docker/derper/* ./ | |
# rm -rf MyCollection | |
# ls | |
# pwd | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: docker.io/1itt1eb0y/${{ env.CONTAINER_NAME }} | |
- | |
name: Get Time | |
id: time | |
uses: nanzm/get-time-action@v1.1 | |
with: | |
timeZone: 8 | |
format: 'YYYY-MM-DD-HH-mm-ss' | |
- | |
name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: ./docker/shuize/ | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
1itt1eb0y/${{ env.CONTAINER_NAME }}:latest | |
1itt1eb0y/${{ env.CONTAINER_NAME }}:${{ steps.time.outputs.time }} |