From b4db791c40408f3f2a50b4e107dadbf2af475c0c Mon Sep 17 00:00:00 2001 From: Astound Date: Sun, 13 Jul 2025 12:56:35 -0500 Subject: [PATCH] Add workflow --- .gitea/workflows/release.yaml | 47 +++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitea/workflows/release.yaml diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml new file mode 100644 index 0000000..e5f96bc --- /dev/null +++ b/.gitea/workflows/release.yaml @@ -0,0 +1,47 @@ +name: release + +on: + schedule: + - cron: '0 0 * * *' + push: + branches: + - main + +jobs: + release-default: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker BuildX + uses: docker/setup-buildx-action@v3 + + - name: Login to DockerHub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKER_REGISTRY_USER }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} + + - name: Check syntax docker + uses: hadolint/hadolint-action@v3.1.0 + with: + dockerfile: Dockerfile + ignore: DL3013,DL3008,DL4006 + + - name: Push Docker image + uses: docker/build-push-action@v6 + with: + context: . + file: Dockerfile + platforms: | + linux/amd64 + linux/arm64 + push: true + no-cache: false + tags: | + ${{ secrets.DOCKER_REGISTRY_USER}}/code-server-dind:latest + ${{ secrets.DOCKER_REGISTRY_USER}}/code-server-dind:${{ github.sha }}