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