Skip to content

Commit cd2a90d

Browse files
authored
Debug gha release failures
1 parent dba1936 commit cd2a90d

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ env:
99
CACHE_KEY: docker-erddap-buildx-tag-
1010

1111
jobs:
12+
debug:
13+
name: Debug
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Dump env
17+
run: env | sort
18+
- name: Dump GitHub context
19+
env:
20+
GITHUB_CONTEXT: ${{ toJson(github) }}
21+
run: echo "$GITHUB_CONTEXT"
22+
1223
build:
1324
name: Build and test Docker Image
1425
runs-on: ubuntu-20.04
@@ -31,7 +42,7 @@ jobs:
3142
3243
- name: Login to Docker Hub
3344
uses: docker/login-action@v1
34-
continue-on-error: true
45+
#continue-on-error: true
3546
with:
3647
username: ${{ secrets.DOCKER_USERNAME }}
3748
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -67,7 +78,9 @@ jobs:
6778

6879
- name: Set up Docker Buildx
6980
uses: docker/setup-buildx-action@v1
70-
81+
with:
82+
buildkitd-flags: --debug
83+
7184
- name: Cache Docker layers
7285
uses: actions/cache@v2
7386
with:

0 commit comments

Comments
 (0)