Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmesterh committed Sep 4, 2024
1 parent 6a32e22 commit 9ab1943
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:
id-token: 'write'

steps:
- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Authenticate with Google Cloud
uses: google-github-actions/auth@v2
Expand All @@ -46,6 +49,15 @@ jobs:
- name: Setup buildx so we can use GHA caching
uses: docker/setup-buildx-action@v3

- name: Setup Java
- uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'

- name: Run make
run: make install

- name: Build and push image
uses: docker/build-push-action@v6
with:
Expand Down

0 comments on commit 9ab1943

Please sign in to comment.