Skip to content

Commit

Permalink
build the image during CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed Apr 26, 2022
1 parent d81406f commit 3de6f21
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,24 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: '**/build/test-results/test/TEST-*.xml'
image-build:
runs-on: windows-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: docker version
run: docker version
- name: docker info
run: docker info
- name: java version
run: java -version
- name: docker build
run: docker build registry-windows
...

0 comments on commit 3de6f21

Please sign in to comment.