From 5d0c848321f0809d90b507e34e2ce876832e6d16 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Wed, 28 May 2025 13:39:56 +0200 Subject: [PATCH] Delete .github/workflows/task-upload-docker-hub.yml --- .github/workflows/task-upload-docker-hub.yml | 78 -------------------- 1 file changed, 78 deletions(-) delete mode 100644 .github/workflows/task-upload-docker-hub.yml diff --git a/.github/workflows/task-upload-docker-hub.yml b/.github/workflows/task-upload-docker-hub.yml deleted file mode 100644 index dbd4d05..0000000 --- a/.github/workflows/task-upload-docker-hub.yml +++ /dev/null @@ -1,78 +0,0 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -# GitHub recommends pinning actions to a commit SHA. -# To get a newer version, you will need to update the SHA. -# You can also reference a tag or branch, but the action may change without warning. - -name: Publish Docker image - -on: - workflow_call: - inputs: - reponame: - description: 'the image name of the docker hub image' - default: 'h2invent/jitsi-admin-main' - required: true - type: string - directory: - description: 'the dir of the Dockerfile image' - default: '.' - required: true - type: string - dockerfile_path: - description: 'the name of the Dockerfile image' - default: './Dockerfile' - required: true - type: string - version: - description: 'the version/tag of the Dockerfile image' - required: true - type: string - - secrets: - dockerhub_username: - required: true - dockerhub_password: - required: true - -jobs: - push_to_registry: - name: Push Docker image to Docker Hub - runs-on: ubuntu-latest - steps: - - name: Get current Username - id: date - run: echo "${{ secrets.dockerhub_password }}" - - - name: Check out the repo - uses: actions/checkout@v4 - - - name: Write semantic Version in config file - uses: jacobtomlinson/gha-find-replace@v3 - with: - find: "" - replace: "${{ inputs.version }}" - regex: false - - - name: Log in to Docker Hub - uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a - with: - username: ${{ secrets.dockerhub_username }} - password: ${{ secrets.dockerhub_password }} - - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 - with: - images: ${{ inputs.reponame }} - - - name: Build and push Docker image - uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 - with: - context: ${{ inputs.directory }} - file: ${{ inputs.dockerfile_path }} - push: true - tags: ${{ inputs.version }} \ No newline at end of file