From 9c50fad6aff140a71ad07cf8c1ef909cd99062c7 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Sun, 30 May 2021 19:48:02 +0800 Subject: [PATCH] add github action config --- .github/workflows/docker-release.yml | 41 +++++++++++++++++++++++++++ .github/workflows/docker-snapshot.yml | 41 +++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 .github/workflows/docker-release.yml create mode 100644 .github/workflows/docker-snapshot.yml diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml new file mode 100644 index 00000000..9b2e54da --- /dev/null +++ b/.github/workflows/docker-release.yml @@ -0,0 +1,41 @@ +name: Docker Release + +on: + push: + tags: + - v* + +jobs: + build: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - + name: Set up docker tag + id: vars + run: echo ::set-output name=RELEASE_TAG::${GTIHUB_REF/refs\/tags\/v/} + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + - + name: Build and push + uses: docker/build-push-action@v2 + with: + file: Dockerfile + context: . + platforms: linux/amd64,linux/arm64/v8,linux/arm/v7,linux/arm/v6 + push: true + tags: | + ${{ secrets.DOCKER_USERNAME }}/ezbookkeeping:${{ steps.vars.outputs.RELEASE_TAG }} + ${{ secrets.DOCKER_USERNAME }}/ezbookkeeping:latest \ No newline at end of file diff --git a/.github/workflows/docker-snapshot.yml b/.github/workflows/docker-snapshot.yml new file mode 100644 index 00000000..abbf371e --- /dev/null +++ b/.github/workflows/docker-snapshot.yml @@ -0,0 +1,41 @@ +name: Docker Snapshot + +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - + name: Set up docker tag + id: vars + run: echo ::set-output name=BUILD_DATE::$(date '+%Y%m%d') + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} + - + name: Build and push + uses: docker/build-push-action@v2 + with: + file: Dockerfile + context: . + platforms: linux/amd64,linux/arm64/v8,linux/arm/v7,linux/arm/v6 + push: true + tags: | + ${{ secrets.DOCKER_USERNAME }}/ezbookkeeping:SNAPSHOT-${{ steps.vars.outputs.BUILD_DATE }} + ${{ secrets.DOCKER_USERNAME }}/ezbookkeeping:latest-snapshot \ No newline at end of file