diff --git a/.gitea/workflows/build-docker.yml b/.gitea/workflows/build-docker.yml new file mode 100755 index 0000000..febcffd --- /dev/null +++ b/.gitea/workflows/build-docker.yml @@ -0,0 +1,49 @@ +name: Build Container +run-name: ${{ gitea.actor }} is pushing +on: + push: + tags: + - "v*.*.*" + +env: + REGISTRY: gitea.haschek.at + IMAGE_NAME: ${{ gitea.repository }} + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - run: echo "🎉 Building ${{ gitea.repository }} because of a ${{ gitea.event_name }} event." + + - name: Checkout + uses: actions/checkout@v2 + + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: | + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: | + type=semver,pattern={{version}} + type=semver,pattern={{major}}.{{minor}} + type=semver,pattern={{major}} + type=sha + + - name: Log in to the Container registry + uses: docker/login-action@v2 + with: + registry: ${{ env.REGISTRY }} + username: ${{ gitea.actor }} + password: ${{ secrets.BUILD_TOKEN}} + + - name: Build + uses: docker/build-push-action@v3 + env: + ACTIONS_RUNTIME_TOKEN: '' + with: + context: . + file: docker/Dockerfile + push: true + tags: ${{ steps.meta.outputs.tags }} + \ No newline at end of file diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml deleted file mode 100755 index fec5d62..0000000 --- a/.github/workflows/build-docker.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: ci - -on: - push: - tags: - - "v*.*.*" - pull_request: - branches: - - "master" - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Docker meta - id: meta - uses: docker/metadata-action@v5 - with: - # list of Docker images to use as base name for tags - images: | - hascheksolutions/http2pic - # generate Docker tags based on the following events/attributes - tags: | - type=schedule - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{version}} - type=semver,pattern={{major}}.{{minor}} - type=semver,pattern={{major}} - type=sha - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to Docker Hub - if: github.event_name != 'pull_request' - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: docker/Dockerfile - platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file