gitlab-eec AutoBuild #64
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: gitlab-eec AutoBuild | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
schedule: | |
- cron: "0 0 */7 * *" | |
env: | |
TEST_TAG: 1itt1eb0y/gitlab-eec:test | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
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/gitlab-eec | |
- | |
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/gitlab | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: | | |
1itt1eb0y/gitlab-eec:latest | |
1itt1eb0y/gitlab-eec:${{ steps.time.outputs.time }} |