name: Deploy image to Gitea description: Deploy image to Gitea inputs: registry: description: "Server address of Docker registry." default: gitea.okami101.io username: description: "Username used to log against the Docker registry" required: true password: description: "Password or personal access token used to log against the Docker registry" required: true runs: using: composite steps: - uses: docker/metadata-action@v5 id: meta with: images: ${{ inputs.registry }}/${{ gitea.repository }} - uses: docker/login-action@v3 with: registry: ${{ inputs.registry }} username: ${{ inputs.username }} password: ${{ inputs.password }} - uses: docker/build-push-action@v6 with: context: . push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}