Skip to content

Commit bb4a3ab

Browse files
fixed build-&-publish-docker-image.yml
1 parent 13218cf commit bb4a3ab

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/build-&-publish-docker-image.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ jobs:
4242
echo "BRANCH=$([ -z '${{ github.event.pull_request.head.sha }}' ] && echo ${GITHUB_REF#refs/*/} || echo $GITHUB_HEAD_REF)" >> $GITHUB_ENV
4343
echo "SHA=$([ -z '${{ github.event.pull_request.head.sha }}' ] && echo $GITHUB_SHA || echo '${{ github.event.pull_request.head.sha }}')" >> $GITHUB_ENV
4444
45-
- name: Setup go
46-
uses: actions/setup-go@v4
47-
with:
48-
go-version: ^1.21 # The Go version to download (if necessary) and use.
45+
# - name: Setup go
46+
# uses: actions/setup-go@v4
47+
# with:
48+
# go-version: ^1.21 # The Go version to download (if necessary) and use.
4949

5050
- name: Clone blobber
5151
uses: actions/checkout@v3
@@ -55,15 +55,15 @@ jobs:
5555
- name: Set up Docker Buildx
5656
uses: docker/setup-buildx-action@v3
5757

58-
- name: Login to Docker Hub
59-
uses: docker/login-action@v1
60-
with:
61-
username: ${{ secrets.DOCKERHUB_USERNAME }}
62-
password: ${{ secrets.DOCKERHUB_PASSWORD }}
58+
# - name: Login to Docker Hub
59+
# uses: docker/login-action@v1
60+
# with:
61+
# username: ${{ secrets.DOCKERHUB_USERNAME }}
62+
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
6363

64-
- name: Get changed files using defaults
65-
id: changed-files
66-
uses: tj-actions/changed-files@v18.4
64+
# - name: Get changed files using defaults
65+
# id: changed-files
66+
# uses: tj-actions/changed-files@v18.4
6767

6868
- name: Pull Build Base
6969
run: |
@@ -118,10 +118,10 @@ jobs:
118118
echo "BRANCH=$([ -z '${{ github.event.pull_request.head.sha }}' ] && echo ${GITHUB_REF#refs/*/} || echo $GITHUB_HEAD_REF)" >> $GITHUB_ENV
119119
echo "SHA=$([ -z '${{ github.event.pull_request.head.sha }}' ] && echo $GITHUB_SHA || echo '${{ github.event.pull_request.head.sha }}')" >> $GITHUB_ENV
120120
121-
- name: Setup go
122-
uses: actions/setup-go@v4
123-
with:
124-
go-version: ^1.21 # The Go version to download (if necessary) and use.
121+
# - name: Setup go
122+
# uses: actions/setup-go@v4
123+
# with:
124+
# go-version: ^1.21 # The Go version to download (if necessary) and use.
125125

126126
- name: Clone blobber
127127
uses: actions/checkout@v3
@@ -136,11 +136,11 @@ jobs:
136136
username: ${{ secrets.DOCKERHUB_USERNAME }}
137137
password: ${{ secrets.DOCKERHUB_PASSWORD }}
138138

139-
- name: Get changed files using defaults
140-
id: changed-files
141-
uses: tj-actions/changed-files@v18.4
142-
with:
143-
fetch-depth: 0
139+
# - name: Get changed files using defaults
140+
# id: changed-files
141+
# uses: tj-actions/changed-files@v18.4
142+
# with:
143+
# fetch-depth: 0
144144

145145
- name: Pull Build Base
146146
run: |

0 commit comments

Comments
 (0)