Skip to content

Commit 8e084b5

Browse files
committed
chore: disable docker workflow
1 parent 640705b commit 8e084b5

1 file changed

Lines changed: 41 additions & 41 deletions

File tree

.github/workflows/docker.yml

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
1-
name: Publish Docker
1+
# name: Publish Docker
22

3-
on:
4-
workflow_call:
5-
inputs:
6-
version:
7-
required: true
8-
type: string
9-
secrets:
10-
DOCKER_USERNAME:
11-
required: true
12-
DOCKER_PASSWORD:
13-
required: true
14-
env:
15-
IMAGE_NAME: rustmcp/oauth2-server
3+
# on:
4+
# workflow_call:
5+
# inputs:
6+
# version:
7+
# required: true
8+
# type: string
9+
# secrets:
10+
# DOCKER_USERNAME:
11+
# required: true
12+
# DOCKER_PASSWORD:
13+
# required: true
14+
# env:
15+
# IMAGE_NAME: rustmcp/oauth2-server
1616

17-
jobs:
18-
docker:
19-
runs-on: ubuntu-latest
20-
steps:
21-
- name: Checkout code
22-
uses: actions/checkout@v4
17+
# jobs:
18+
# docker:
19+
# runs-on: ubuntu-latest
20+
# steps:
21+
# - name: Checkout code
22+
# uses: actions/checkout@v4
2323

24-
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v3
24+
# - name: Set up Docker Buildx
25+
# uses: docker/setup-buildx-action@v3
2626

27-
- name: Log in to Docker Hub
28-
uses: docker/login-action@v3
29-
with:
30-
username: ${{ secrets.DOCKER_USERNAME }}
31-
password: ${{ secrets.DOCKER_PASSWORD }}
27+
# - name: Log in to Docker Hub
28+
# uses: docker/login-action@v3
29+
# with:
30+
# username: ${{ secrets.DOCKER_USERNAME }}
31+
# password: ${{ secrets.DOCKER_PASSWORD }}
3232

33-
- name: Build and push Docker image
34-
uses: docker/build-push-action@v5
35-
with:
36-
platforms: linux/amd64,linux/arm64
37-
push: true
38-
provenance: mode=max
39-
tags: |
40-
${{ env.IMAGE_NAME }}:${{ inputs.version }}
41-
${{ env.IMAGE_NAME }}:latest
33+
# - name: Build and push Docker image
34+
# uses: docker/build-push-action@v5
35+
# with:
36+
# platforms: linux/amd64,linux/arm64
37+
# push: true
38+
# provenance: mode=max
39+
# tags: |
40+
# ${{ env.IMAGE_NAME }}:${{ inputs.version }}
41+
# ${{ env.IMAGE_NAME }}:latest
4242

43-
- name: Echo Pushed Tags
44-
run: |
45-
echo "Published:"
46-
echo " - ${{ env.IMAGE_NAME }}:${{ inputs.version }}"
47-
echo " - ${{ env.IMAGE_NAME }}:latest"
43+
# - name: Echo Pushed Tags
44+
# run: |
45+
# echo "Published:"
46+
# echo " - ${{ env.IMAGE_NAME }}:${{ inputs.version }}"
47+
# echo " - ${{ env.IMAGE_NAME }}:latest"

0 commit comments

Comments
 (0)