Skip to content

Commit

Permalink
ci: attempt to deploy image per MAJOR version #7
Browse files Browse the repository at this point in the history
  • Loading branch information
novoj committed Apr 15, 2024
1 parent ae15ceb commit 0dfe1e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/docker-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4 # checkout from Git
with:
ref: dev # Always checks out the dev branch

- name: Download a single artifact # download `evita-server.jar` artifact if the workflow we react to was successful
uses: dawidd6/action-download-artifact@v2
Expand Down Expand Up @@ -54,4 +56,4 @@ jobs:
tags: ${{ vars.CI_REGISTRY_USER }}/${{ env.RELEASE_IMAGE }}
platforms: linux/amd64,linux/arm64/v8
build-args: |
EVITA_JAR_NAME=${{ env.EVITA_JAR_NAME }}
EVITA_JAR_NAME=${{ env.EVITA_JAR_NAME }}
2 changes: 2 additions & 0 deletions .github/workflows/docker-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3 # checkout from Git
with:
ref: master # Always checks out the master branch

- name: Download a JAR file to deploy # download `evita-server.jar` artifact if the workflow we react to was successful
uses: dawidd6/action-download-artifact@v2
Expand Down

0 comments on commit 0dfe1e0

Please sign in to comment.